Hi, If i understood your question correctly, this will help you.
open F1,">>F1.dat" or die "Can't open F1.dat: $!\n"; #Open F1 file in +Append mode open F2,"F2.dat" or die "Can't open F2.dat: $!\n"; while(<F2>) { print F1 $_; } close(F1); close(F2);
(Untested)
Regards,
Velusamy R.
In reply to Re: file merge problem
by Samy_rio
in thread file merge problem
by Anonymous Monk
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |