Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: Hide program output from terminal

by haoess (Curate)
on Sep 15, 2006 at 08:03 UTC ( [id://573065]=note: print w/replies, xml ) Need Help??


in reply to Hide program output from terminal

See perldoc -f open for playing with STDOUT and its friends.

# save STDOUT open my $stdout, '>&STDOUT'; # close it open STDOUT, '>', undef; # don't display system's STDOUT (but it's STDERR!) system '...'; # reopen STDOUT open STDOUT, '>&', $stdout;

--Frank

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://573065]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (4)
As of 2024-04-19 07:20 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found