Help for this page

Select Code to Download


  1. or download this
    /^(BCG-\d+)/  # i.e. line-initial "BCG-" followed by digits
    
  2. or download this
    /^\s+(SNBX\S+)/
    /^\s+(TRX-\d+)\s+\S+\s+BL-TRX/
    
  3. or download this
    print "BCG    LOCATION    TRX     STATUS\n";
    print "---------------------------------\n";
    ...
            print "$recid  $loc  $1  $2\n";
        }
    }