in reply to Disable output from system
In addition to what already has been said, here other variations:
qx(tar ...); # Burns more CPU cycles, but who cares ;-) use File::Spec::Functions qw(devnull); system('tar .... >'.devnull.' 1>&2'); # works on *nix and windoze
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Disable output from system
by Anonymous Monk on Mar 26, 2009 at 10:57 UTC | |
by rovf (Priest) on Mar 26, 2009 at 13:43 UTC | |
|
Re^2: Disable output from system
by Tumata (Initiate) on Mar 26, 2009 at 10:59 UTC |