- or download this
perl -MO=Deparse -lne 'print if s/0010 0010.*\/\/.*\/\///'
- or download this
LINE: while (defined($_ = <ARGV>)) {
chomp $_;
print $_ if s[0010 0010.*//.*//][];
}
- or download this
#!/usr/perl -w
use strict;
...
chomp $line;
print $line if s[0010 0010.*//.*//][];
}
- or download this
#!/usr/perl -w
use strict;
...
(<ARGV>);
print "Name: $_"
for @interesting_lines;