1

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?

1 Answer 1

3

Redirect them to /dev/null.

firefox &> /dev/null &

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .