Subject: | Enhancement: Shell Quote quotes a string containing + which is not necessary for most shells |
String-ShellQuote-1.00 appears to quote items with a '+' in them. This can be fixed with a change to the regular expression in the line:
} elsif (/[^\w\d.\-\/]/) {
to
} elsif (/[^\w\+.\-\/]/) {
Note that \d there is redundant anyway because \w includes numerals as well.
Regards,
Gautam