When I execute gksudo, I get some output in the terminal, I want to supress that output, but still get the output from the actual command. For example:
$ gksudo whoami
> #some gksudo related output
> root
When I try to dump the output to /dev/null like this:
$ gksudo &> /dev/null whoami
I get the prompt message without output, but the whoami result is also supressed.
