Help for this page

Select Code to Download


  1. or download this
    perl -pi -e 's/$string_to_be_removed//g' full_path/one.txt
  2. or download this
    #!/usr/bin/perl
    BEGIN {(*STDERR = *STDOUT) || die;}
    ...
    binmode ARGVOUT if $. == 1;    s/$string_to_be_removed//g;    
    print;
    }