Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
@filelist = ("file1", "file2", "file3");
$newfile = "newfile";
open(NF, ">$newfile") or die "Can't open $newfile: $! \n";
foreach $file (@filelist) {
open(F, "$file") or die "Can't open $file: $! \n";
@Info = (<F>);
close(F);
print NF "@Info";
}
close(NF);
system("cat filename filename2 filename3 >resultfile");