I would like to redirect the output generated from a background application in Linux to /dev/null.
I am using kate text editor and it prints all the debug messages on th
These will also redirect both:
yourcommand &> /dev/null yourcommand >& /dev/null
though the bash manual says the first is preferred.