Whenever I start Firefox or any other application from command line it prints messages on the terminal. How do I get rid of those messages? Where should I redirect those things and how?

I use this to start firefox.

$ firefox &

What should I use instead?

link|improve this question
feedback

1 Answer

up vote 3 down vote accepted

Redirect them to /dev/null.

firefox &> /dev/null &
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.