Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: arguments to perl -e

by explorer (Chaplain)
on Apr 07, 2006 at 17:02 UTC ( [id://541922]=note: print w/replies, xml ) Need Help??


in reply to arguments to perl -e

#!/bin/bash file=$1 var=$2 cat $file | perl -e 'BEGIN { $var = $ARGV[0] } print <STDIN>' $var > o +utput

Replies are listed 'Best First'.
Re^2: arguments to perl -e
by explorer (Chaplain) on Apr 08, 2006 at 09:14 UTC
    Other solution. Insert $var variable before the file and send the stream. The Perl script will read it at BEGIN step:
    #!/bin/bash file="timer" var="Two" (echo $var; cat $file) | perl -e 'BEGIN { $var=<> } print <>; END { p +rint $var }' > output

    Ok... Is UGLY, I know it... but I have impatience!

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (3)
As of 2024-04-26 01:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found