in reply to Running a shell command via Perl

If you do end up keeping the shell commands, remember to call them via their full path (/usr/bin/cp etc..) so you don't run into trouble if someone puts a malicious/inadvertant script with the same name higher in the PATH of your executing env.

Replies are listed 'Best First'.
Re^2: Running a shell command via Perl
by just dave (Acolyte) on Apr 26, 2006 at 11:18 UTC
    Thank you both, again, you brought up a good point ! I'll do so.