Help for this page

Select Code to Download


  1. or download this
    unless ($args =~ /\-rs(\s+)(\S+)/ && $args =~ /\-p(\s+)(\S+)/ && $args
    + =~ /\-P(\s+)(\S+)/) {
       $args .= " --rs $str";
    }
    
  2. or download this
    if ($args =~ /\-rs(\s+)(\S+)/ || $args =~  /\-p(\s+)(\S+)/ || $args =~
    +  /\-P(\s+)(\S+)/) {
        // do nothing
    } else {
        $args .= " --rs $str";
    }
    
  3. or download this
    unless (! $args =~ /\-rs(\s+)(\S+)/ && ! $args =~ /\-p(\s+)(\S+)/ && !
    + $args =~ /\-P(\s+)(\S+)/) {
       $args .= " --rs $str";
    }