Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re: system call

by haoess (Curate)
on May 10, 2004 at 13:24 UTC ( [id://352040]=note: print w/replies, xml ) Need Help??


in reply to system call

You didn't tell us, what goes wrong.

Your code is syntactical correct. But:

  • Where does $n come from?
  • Where does $dump_path come from?

They may contain special shell characters like &, ;, `, ', ", |, *, ?, ~, <, >, ^, (, ), [, ], {, }, $ and \.

Your CGI-script mostly does not run under the same UID as your command line script, so you should think of:

  • Is your "CGI"-user able to execute /usr/local/bin/dcm_dump_file?
  • Does "he" have enough rights to write into $dump_path.'PCfiles/dumpfile'?

To examine your situation, you should look at possible errors and use backticks with redirecting STDERR to STDOUT:

# see what happens print `$your command 2>&1 > output`;

-- Frank

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (7)
As of 2024-04-19 09:57 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found