Help for this page

Select Code to Download


  1. or download this
    use IO::File qw( &SEEK_SET );
     
    ...
    $fh->close;
     
    exit 0;
    
  2. or download this
    use Fcntl qw( &SEEK_SET );
    
    ...
    close(FH);
    
    exit 0;