Help for this page

Select Code to Download


  1. or download this
    $ perl -E 'open $fh, "<a.txt"; $fh->seek(0, 0);'
    Can't locate object method "seek" via package "IO::Handle" at -e line 
    +1.
    
  2. or download this
    $ perl -MFileHandle -E 'open $fh, "<a.txt"; $fh->seek(0, 0);'
    
  3. or download this
    seek $fh, 0, 0;