while( <> ) { } #### foreach $ARGV (@ARGV) { open( THISFILE, $ARGV ) || next; while( $_ = ) { } } #### $ grep 'foo' thisfile.txt thisOtherFile.txt
## foreach $ARGV (@ARGV) { open( THISFILE, $ARGV ) || next; while( $_ = ) { } } ##
## $ grep 'foo' thisfile.txt thisOtherFile.txt