Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Running perl script from a perl script

by ikuzmanovs (Novice)
on Jan 08, 2010 at 16:33 UTC ( [id://816345]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    @var=`success.pl`;
    print @var;
    
  2. or download this
    @var=system("success.pl") or die "cant run";
    print @var;
    
  3. or download this
    OPEN(FH, "success.pl");
    @var=<FH>;
    close(FH);
    print $var;
    
  4. or download this
    @var=exec ("success.pl") or die "cant run";
    print @var;
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://816345]
Approved by jettero
Front-paged by moritz
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (6)
As of 2024-04-23 10:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found