Help for this page

Select Code to Download


  1. or download this
    while (<IFILE>) {
        if (my ($word, $time_stamp) = /[#!]\s+(\w+)\s+(\d+)./) {
            print "[ $word $time_stamp ]\n";
        }
    }