css_enhanced_waf/studiorender/ihvtestcopy.pl

13 lines
184 B
Perl
Raw Normal View History

2020-04-22 17:56:21 +01:00
$infile = shift;
$outfile = shift;
open INFILE, "<$infile";
@infile = <INFILE>;
close INFILE;
open OUTFILE, ">$outfile";
while( shift @infile )
{
print OUTFILE $_;
}
close OUTFILE;