Help for this page

Select Code to Download


  1. or download this
    while(<>) {
        tr/\r//d;  # get rid of the CR
        print if /^\@QUERY/ .. /^\@ENDQUERY/;
    }
    
  2. or download this
    while(<>) {
        tr/\r//d;
        print if /^\@QUERY/ .. eof;
    }