- or download this
$ perl -MO=Deparse -pe 's/^(?:L\d+|DETAIL|SPACE|SUMMARY),//'
LINE: while (defined($_ = <ARGV>)) {
...
continue {
die "-p destination: $!\n" unless print $_;
}
- or download this
while (<>) {
s/^(?:L\d+|DETAIL|SPACE|SUMMARY),//;
print;
}
- or download this
#!/usr/bin/env perl
use warnings;
...
}
close $ofh;
close $ifh;