mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 06:06:50 +00:00
13 lines
184 B
Perl
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; |