Files
cool-source-archive/studiorender/ihvtestcopy.pl
Totterynine 4b952b0e4e init
2021-09-13 15:31:53 +05:00

13 lines
184 B
Perl

$infile = shift;
$outfile = shift;
open INFILE, "<$infile";
@infile = <INFILE>;
close INFILE;
open OUTFILE, ">$outfile";
while( shift @infile )
{
print OUTFILE $_;
}
close OUTFILE;