![]() |
|
|
|||||||
| Home | Forums | Register | Rules & FAQ | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| Linux RedHat, Ubuntu, SUSE, Fedora, Debian, Mandriva, Slackware, Gentoo linux, PCLinuxOS. All Linux questions here! |
Other UNIX.COM Threads You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to do a silent installation on linux | eamani_sun | Linux | 2 | 05-09-2008 11:24 AM |
| [Perl] Silent Input | eightysix | Shell Programming and Scripting | 2 | 11-20-2007 05:39 PM |
| How to run shell script in silent mode | x057373 | UNIX for Dummies Questions & Answers | 3 | 12-04-2005 04:26 PM |
| SFTP silent login | sgaucho | HP-UX | 6 | 11-09-2005 06:53 AM |
| silent telnet | cgardiner | UNIX for Dummies Questions & Answers | 1 | 09-16-2001 07:31 AM |
![]() |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|||
|
Wine in silent mode
I want to run through wine the utorrent and I don't want the messages that are usually displayed in the console,
so I use the following command Code:
wine utorrent.exe > /dev/null & Do you know why and how can I fix it? Thanks in advance. |
| Forum Sponsor | ||
|
|
|
|||
|
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 & |
|||
| Google UNIX.COM |