Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    }
    
    printf("after loop\n");
    
  2. or download this
    while (<TEST_FILE>)
    {
        /^\s*TEST_PATTERN\s+/ and last;
    }