csgo-2018-source/studiorender/ihvtestcopy.pl

13 lines
184 B
Perl
Raw Permalink Normal View History

2021-07-25 12:11:47 +08:00
$infile = shift;
$outfile = shift;
open INFILE, "<$infile";
@infile = <INFILE>;
close INFILE;
open OUTFILE, ">$outfile";
while( shift @infile )
{
print OUTFILE $_;
}
close OUTFILE;