in reply to Re^2: File::Copy Problem on Mac OS X
in thread File::Copy Problem on Mac OS X
Update: Fixed typo, reworded last sentence. Hope this helps#!/usr/bin/perl use strict; use warnings; use File::Copy; my $source = $ARGV[0]; my $target = $ARGV[1]; copy("$source", "$target") or die "Can't copy files ($!)\n"
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: File::Copy Problem on Mac OS X
by ikegami (Patriarch) on Jun 04, 2008 at 03:53 UTC | |
|
Re^4: File::Copy Problem on Mac OS X
by ademmler (Novice) on Jun 03, 2008 at 22:30 UTC |