mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-08-15 13:16:58 +00:00
1
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
$infile = shift;
|
||||
$outfile = shift;
|
||||
|
||||
open INFILE, "<$infile";
|
||||
@infile = <INFILE>;
|
||||
close INFILE;
|
||||
|
||||
open OUTFILE, ">$outfile";
|
||||
while( shift @infile )
|
||||
{
|
||||
print OUTFILE $_;
|
||||
}
|
||||
close OUTFILE;
|
||||
Reference in New Issue
Block a user