Help for this page

Select Code to Download


  1. or download this
    system 'perl', '-pi', '-e', 's/>//g', $filename;
    
  2. or download this
    CHANGE_FILE: {
      my $backup = "${filename}~";
    ...
      select $filename;
      s/>//g, print while <$backup>
    }