Help for this page

Select Code to Download


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