in reply to how to url encode at OS level?
You can avoid the command shell altogether, if start is an exe or com file:
But something tells me that start is a built-in to cmd.exe, so you'll still need it. In which case, quotes are your friend:system (qw[start http://www.foo.com/cgi-bin/foo.cgi?a=2&b=3]);
Hope that helps.system q[start "http://www.foo.com/cgi-bin/foo.cgi?a=2&b=3"];
Update: D'oh - too slow. :-)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: how to url encode at OS level?
by redss (Monk) on Jul 19, 2006 at 14:20 UTC |