- or download this
use URI::Escape; # escape funky chars out of URLs
- or download this
...
else { $url = $perlmonksURL . $nod
+e; }
if ($^O =~ /MSWin32/i) {
...
- or download this
# escape URL to keep netscape and/or the shell from choking
# " " is also unsafe (causes "Doc contains no data"
$url=~s/+/%2B/g; # real "+" is preserved
$url=~s/\s/+/g; # get rid of whitespace, not just " "
$url=uri_escape($url,"\',");
- or download this
...
eval '
...
$url =~ s/\s/+/g;
if ($pid == 0) {
...
- or download this
$url=uri_escape($url," \',+");