Help for this page

Select Code to Download


  1. or download this
    while( <> ) {
    }
    
  2. or download this
      foreach $ARGV (@ARGV) {
        open( THISFILE, $ARGV ) || next;
        while( $_ = <THISFILE> ) {
        }
      }
    
  3. or download this
      $ grep 'foo' thisfile.txt thisOtherFile.txt