in reply to Hide program output from terminal

I know this isn't quite your question, but I'd recommend writing perl code in perl, rather than shell in perl. ;-) For example, use the File::Copy module to copy your file. Otherwise you may as well write this in shell - it would be just a bit simpler that way ;-)

(I know that when I started perl, I didn't know about File::Copy, so thought you may want to know about it - it is standard in all perls I've used that I recall.)

Replies are listed 'Best First'.
Re^2: Hide program output from terminal
by Milamber (Beadle) on Sep 16, 2006 at 13:36 UTC
    Noted. It probably would make more sense. I know more shell than Perl at the moment, so everything I've written so far is a nasty munge between the two. Thanks for the link ;-)