- or download this
sub bashquote { "'" . shift =~ s/'/'"'"'/gr . "'" }
- or download this
# untested
sub bashquote
...
s/'/'"'"'/g;
return "'$_'";
}
- or download this
# untested
sub bashquote
...
s/'/'"'"'/g;
return "'$_'";
}
- or download this
# untested
sub bashquote
...
s/'/'\''/g;
return "'$_'";
}
- or download this
# untested
sub bashquote
...
s/''$//;
return $_;
}
- or download this
# untested
sub bashquote
...
s/''$//;
return $_;
}
- or download this
# untested
sub bashquote
...
s/''$//;
return $_;
}
- or download this
# untested
sub shell_quote
{
return join(' ',map { bashquote($_) } @_);
}