Help for this page

Select Code to Download


  1. or download this
    sub bashquote { "'" . shift =~ s/'/'"'"'/gr . "'" }
    
  2. or download this
    # untested
    sub bashquote
    ...
        s/'/'"'"'/g;
        return "'$_'";
    }
    
  3. or download this
    # untested
    sub bashquote
    ...
        s/'/'"'"'/g;
        return "'$_'";
    }
    
  4. or download this
    # untested
    sub bashquote
    ...
        s/'/'\''/g;
        return "'$_'";
    }
    
  5. or download this
    # untested
    sub bashquote
    ...
        s/''$//;
        return $_;
    }
    
  6. or download this
    # untested
    sub bashquote
    ...
        s/''$//;
        return $_;
    }
    
  7. or download this
    # untested
    sub bashquote
    ...
        s/''$//;
        return $_;
    }
    
  8. or download this
    # untested
    sub shell_quote
    {
        return join(' ',map { bashquote($_) } @_);
    }