Help for this page

Select Code to Download


  1. or download this
    system( 'unzip', $ZIP, '-d', $TMP );  # instead of 'system "unzip $ZIP
    + -d $TMP"'
    
  2. or download this
    $ZIP =~ s/([^\w.-])/\\$1/g;
    for $BADFILE ( @BADFILES ) {
    ...
          $RESULT = `zip -d $ZIP $BADFILE`;
          print $RESULT;
       } ...