Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use warnings;
    use strict;
    ...
        flock $fh, LOCK_EX;
        binmode $fh;
        my $text = <$fh>;
    
  2. or download this
        $text =~ tr/0-9{}//d;
        seek $fh, 0, 0;
        truncate $fh, 0;
        print $fh $text;
    }