Help for this page

Select Code to Download


  1. or download this
    my $iter = 0;
    while( $iter++ < $MAX_ITERS ) {
      do_stuff();
    }
    
  2. or download this
    {
       my $block_size = 207;
       sub get_block_size { $block_size }
    }
    
  3. or download this
    sub nuke_file {
        my $file = shift;
    ...
        }
        close(BYEBYE);
    }
    
  4. or download this
    sub all_ones {
        0xff x $_[0];
    }
    
    nuke_file( $filename, \&all_ones );