in reply to Re: Re: CGI Command Line
in thread CGI Command Line

If your values contain spaces, you'll either have to use quotes or escape the spaces with backslashes, like this:
./script.pl name="some value with spaces" ./script.pl name=some\ value\ with\ spaces

Replies are listed 'Best First'.
Re: Re: Re: Re: CGI Command Line
by JoeJaz (Monk) on Apr 14, 2004 at 15:12 UTC
    That's good to know. Thanks!