Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re^5: how to use perl variable in system command to run on unix

by Arunbear (Prior)
on Sep 04, 2013 at 09:50 UTC ( [id://1052274]=note: print w/replies, xml ) Need Help??


in reply to Re^4: how to use perl variable in system command to run on unix
in thread how to use perl variable in system command to run on unix

Because in this case you want a literal "$9", you don't want it to be expanded by Perl. An example that you can experiment with:
% date Wed Sep 4 10:41:55 BST 2013 % date | awk '{ print $2 }' Sep % perl -de0 Loading DB routines from perl5db.pl version 1.32 Editor support available. Enter h or `h h' for help, or `man perldebug' for more help. main::(-e:1): 0 DB<1> $cmd = qq[date | awk '{ print $2 }'] DB<2> p $cmd date | awk '{ print }' DB<3> p qx/$cmd/ Wed Sep 4 10:47:41 BST 2013 DB<4> $cmd = qq[date | awk '{ print \$2 }'] DB<5> p $cmd date | awk '{ print $2 }' DB<6> p qx/$cmd/ Sep DB<7> q %

Replies are listed 'Best First'.
Re^6: how to use perl variable in system command to run on unix
by tousifp (Novice) on Sep 04, 2013 at 11:59 UTC
    Thanks. I got it. Will try your code later surely.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (2)
As of 2026-02-15 23:13 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found

    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.