Help for this page

Select Code to Download


  1. or download this
    unless (unlink $file) {
      carp "Couldn't remove file $file!\n";
      ... ...
    }
    
  2. or download this
    unlink $file or do {
     #copy and paste of old code
    };