Help for this page

Select Code to Download


  1. or download this
    perl -pe "s/[#*]//g" infile > outfile
    
  2. or download this
    perl -i.bak -pe "s/[#*]//g" filename
    
  3. or download this
    perl -pe "next if /[#*]/" infile > outfile
    
  4. or download this
    perl -i.bak -pe "next if /[#*]/" filename