Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Working with other processes and programs

by vroom (His Eminence)
on Jan 04, 2000 at 23:31 UTC ( [id://1698]=perltutorial: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    system "xv $imagename";
    
  2. or download this
    $output=`more datafile`;
    
  3. or download this
    $pid=open READER, "programname arguments|" or die "Can't run the progr
    +am: $!\n";
    while(<READER>){
       $output.=$_;
    }
    close READER;
    
  4. or download this
    $pid=open WRITETOME, "|programname arguments" or die "Couldn't fork pr
    +ocess";
    print WRITETOME "write this\n";
    close WRITETOME;
    

Log In?
Username:
Password:

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

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

    No recent polls found