![]() |
|
Problems? Is your data what you think it is? | |
PerlMonks |
Re: Do not display the command result in the console (updated)by Crackers2 (Parson) |
on Dec 06, 2013 at 01:43 UTC ( #1065877=note: print w/replies, xml ) | Need Help?? |
One issue is that your redirections are in the wrong order
The first one, like you have, ends up redirecting stdout to /dev/null, but stderr to the original stdout. The second one redirects stdout to /dev/null, and then stderr to the new stdout, i.e. also /dev/null
In Section
Seekers of Perl Wisdom
|
|