mirror of
https://github.com/swg-ostrich/ostrich.git
synced 2026-01-16 23:04:19 -05:00
20 lines
202 B
Perl
Executable File
20 lines
202 B
Perl
Executable File
#!/usr/bin/perl
|
|
|
|
while (<>)
|
|
{
|
|
if (/^\./)
|
|
{
|
|
$debug .= $_;
|
|
s/\/debug\//\/release\//;
|
|
$release .= $_;
|
|
}
|
|
else
|
|
{
|
|
$debug .= $_;
|
|
$release .= $_;
|
|
}
|
|
}
|
|
|
|
print $debug;
|
|
print $release;
|