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

Re: run perl script with cmd line in shell

by Sandy (Curate)
on Apr 16, 2012 at 12:28 UTC ( [id://965299]=note: print w/replies, xml ) Need Help??


in reply to run perl script with cmd line in shell

I am truly confused as what it is that you are asking.

Are you asking to pass parameters which are outputs from a perl script to another perl script?

Use the unix backticks to execute your perl program on the command line first...

 perl -e 'print "@ARGV\n"' `perl -e '@x=(1..5);print "@x\n"'`

or, pipe the output from one perl script into stdin of 2nd perl script

perl -e '@x=(1..5);print "@x"' | perl -e 'while (<>) {print};print"\n +"'
Like I said, I am unsure if this is what you are asking.

Sandy

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (5)
As of 2024-03-28 20:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found