![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Linux RedHat, Ubuntu, SUSE, Fedora, Debian, Mandriva, Slackware, Gentoo linux, PCLinuxOS. All Linux questions here! |
More UNIX and Linux Forum Topics 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 02:24 PM |
| [Perl] Silent Input | eightysix | Shell Programming and Scripting | 2 | 11-20-2007 09:39 PM |
| How to run shell script in silent mode | x057373 | UNIX for Dummies Questions & Answers | 3 | 12-04-2005 08:26 PM |
| SFTP silent login | sgaucho | HP-UX | 6 | 11-09-2005 10:53 AM |
| silent telnet | cgardiner | UNIX for Dummies Questions & Answers | 1 | 09-16-2001 10:31 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate 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. |
|
||||
|
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 & |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|