HelpPlease
12-09-2003, 02:12 PM
i want to copy file1.txt, file2.txt, file3.txt into file together.txt useing if posible one command................i need to use a "filenamehere".sh to implement it but i'm not good with coding...........i tried:
open (OUT, ">>$together");
foreach (all) {
open (IN, "$_");
while (<IN> ) {
print OUT;
}
close (IN);
}
close (OUT);
But thats not working:mad: i don't even know if it makes sense. i don't know what else to do.
open (OUT, ">>$together");
foreach (all) {
open (IN, "$_");
while (<IN> ) {
print OUT;
}
close (IN);
}
close (OUT);
But thats not working:mad: i don't even know if it makes sense. i don't know what else to do.