Help for this page

Select Code to Download


  1. or download this
    FF: binmode ARGV;
    while(<>)
    ...
    { if(eof)
       { close ARGV; goto FF; }
    }
    
  2. or download this
    FF: binmode ARGV;
    while(<>)
    ...
    { if(eof)
       { close ARGV; goto FF; }
    }
    
  3. or download this
    while(<>)
    {
    ...
        print $_=<>;
        close BINMODE;
    }