Help for this page

Select Code to Download


  1. or download this
    use Getopt::Long;
    
    ...
    my $path = $opt{path};
    my $file = $opt{file};
    
  2. or download this
    my $fullFile = $path . $file;
    unlink($fullFile) or die "$!\n";
    
  3. or download this
    foreach my $arrayFile(@array) {
      my $fullFile = $path . $arrayFile;
      unlink($fullFile) or die "$!\n";
      }