Help for this page

Select Code to Download


  1. or download this
    truncate('test.dat', 1024);
    
  2. or download this
    use strict;
    use warnings;
    ...
        print $handle $_;
    }
    close($handle);
    
  3. or download this
    my $crop = 1024;
    my $margin = 64;
    ...
    read($handle, $_, $crop + $margin);