ckaspar
asked on
How would I append one file to another in perl
my $file1 = "cat";
my $file2 = "dog";
How would I append dog to cat?
my $file2 = "dog";
How would I append dog to cat?
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
perl -pe '' dog >>cat
;-)
;-)
system("copy $file1t + $file2"); # or ms-dos version