Thread: Perl
View Single Post
Old 02-01-2006, 03:20 AM   #3 (permalink)
teknomage1
Jack of all trades
 
teknomage1's Avatar
 
Join Date: Feb 2005
Location: Los Angeles
Posts: 598
teknomage1 is on a distinguished road
Send a message via AIM to teknomage1
And of course if you're using perl on unix you can just
Code:
system("mv $oldfile $newfile");
or
Code:
my $mv_output = `mv $oldfile newfile`; #note those are backticks not single quotes!
__________________
Stop intellectual property from infringing on me
teknomage1 is offline   Reply With Quote