In <0c9717ca-52dd-49ce-8102-e14328838...@googlegroups.com> cev...@gmail.com 
writes:

> someip = '192.168.01.01'
> var1 = 'lynx -dump http://' + someip + '/cgi-bin/xxxx.log&.submit=+++Go%21+++ 
>  > junk' 

'&' is a special character in shell commands.  You'll need to quote or
escape it.

Try this:

    someip = '192.168.01.01'
    var1 = 'lynx -dump "http://' + someip + 
'/cgi-bin/xxxx.log&.submit=+++Go%21+++"  > junk' 

Note the extra pair of double-quotes around the http:// part.

-- 
John Gordon                   A is for Amy, who fell down the stairs
gor...@panix.com              B is for Basil, assaulted by bears
                                -- Edward Gorey, "The Gashlycrumb Tinies"

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to