in reply to How do I execute UNIX commands from a perl script

For what it sounds like you'll want, the most you should need is to call system() with the commands you want to call. See the link for details on how to use it.

A quick and dirty example would be something like:

system("cp /foo /bar");

or

system("cp", "/foo", "/bar");

each of which do slightly different things. See system() or try a Super Search for more discussion.

Hope this helps!

--jwest

-><- -><- -><- -><- -><-
All things are Perfect
    To every last Flaw
    And bound in accord
         With Eris's Law
 - HBT; The Book of Advice, 1:7

Replies are listed 'Best First'.
Re^2: How do I execute UNIX commands from a perl script
by Anonymous Monk on Oct 15, 2004 at 16:08 UTC
    Just use backticks. to remove a file called file.doc all you'd have to do is put in your program `rm file.doc`; you might want to put in directories or whatever, but, I have found that to be the easiest way to execute unix command options from perl script