The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > OS Specific Forums > Linux
Google UNIX.COM



View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 03-10-2008
myle myle is offline
Registered User
 

Join Date: Mar 2008
Location: Greece
Posts: 13
Some messages are displayed because they are printed in stderr.
The > redirects only the stdout. So the solution to put a program in absolute silent mode is
&> /dev/null

so in this case the command is like
Code:
wine utorrent.exe &> /dev/null &
Reply With Quote