Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    /base-dir/dir/foo.txt INVALID ORDER-NO 4546090
    INVALID ORDER-NO 4546090
    INVALID ORDER-NO 4546090
    
  2. or download this
    while (<DATA>) {
        chomp;
        s/^\/\S+\s//;
        print "$_\n";
    }