Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re^2: system command with arguments Error

by ansh batra (Friar)
on Jan 07, 2013 at 18:19 UTC ( [id://1012082]=note: print w/replies, xml ) Need Help??


in reply to Re: system command with arguments Error
in thread system command with arguments Error

This node falls below the community's threshold of quality. You may see it by logging in.
  • Comment on Re^2: system command with arguments Error

Replies are listed 'Best First'.
Re^3: system command with arguments Error
by davido (Cardinal) on Jan 07, 2013 at 21:27 UTC

    It should also output what the command was, and you should be able to look at that command and see what's wrong with it. We can't perform the debugging steps for you.


    Dave

Re^3: system command with arguments Error
by Anonymous Monk on Jan 07, 2013 at 21:34 UTC

    It should output something more.


    Anyway, a better snippet for debugging:

    use Cwd; my $cmd = "perl Cart.pl $manuf $series $model $url $kb_color_style_nam +e $kb_color_image_url $kb_color_image_id"; print "cmd is $cmd\n"; printf "running at %s\n", getcwd; system($cmd) == 0 or die "cant run!!";

    What does that output?

      Please do output $? and $^E in your error message when system fails.

      system($cmd) == 0 or die "system $cmd failed: $? / $^E"

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (6)
As of 2024-04-19 11:22 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found