Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re: Shell Commands executed in perl script

by rinceWind (Monsignor)
on May 22, 2007 at 11:08 UTC ( [id://616729]=note: print w/replies, xml ) Need Help??


in reply to Shell Commands executed in perl script

You have quotes inside your quotes. Try the following:

print $sh->ls( qq(-l ./logs/ |grep -v "^d" |grep -v file1 | awk 'NR>1 +{ print \$9}'));

Or indeed you could use q() as you're not doing any variable substitution inside the string.

Update: yes I know it would be better for the OP to have coded this in perl rather than shelling out 4 subprocesses. Sometimes you need to start with where the person is. Spotting the quote nesting is something glaringly obvious to me - a kind of mistake anyone can make in coding, and worth pointing out.

--
wetware hacker
(Qualified NLP Practitioner and Hypnotherapist)

Replies are listed 'Best First'.
Re^2: Shell Commands executed in perl script
by msk_0984 (Friar) on May 22, 2007 at 11:43 UTC
    Hey rinceWind

    Really thanx for your prompt reply ..... but i am facing another problem after making the changes, when executed it is giving me the error. Even used q() also but no success

    awk: 'NR
    awk: ^ invalid char ''' in expression

    Work Hard Party Harderrr!!
    Sushil Kumar
Re^2: Shell Commands executed in perl script
by Anonymous Monk on May 22, 2007 at 13:24 UTC
    Dude ... Do you really need to use Shell at all ??? Convert this shell to perl code...will probably take less time then debugging this errors one at a time.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (9)
As of 2024-04-19 08:49 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found