Hi, I have a basic wget script like below, now that I got an android phone I was curious if i can run this on the phone directly, but busybox wget doesn't seem to know cookies.
is there any (reasonable simple?) workaround ? many thanks ---------------- $ busybox wget --post-data='username=xxx&password=yyy&_action_login=L ogin&_module=login&_template=login&_action=_login' --save-cookies=my-cookies --k eep-session-cookies http://tld.com.au/main.htm wget: unrecognized option '--save-cookies=my-cookies' BusyBox v1.14.3 (2009-08-18 21:48:57 CDT) multi-call binary Usage: wget [-c|--continue] [-s|--spider] [-q|--quiet] [-O|--output-document fil e] [--header 'header: value'] [-Y|--proxy on/off] [-P DIR] [-U|--user-agent agent] url Retrieve files via HTTP or FTP Options: -s Spider mode - only check file existence -c Continue retrieval of aborted transfer -q Quiet -P Set directory prefix to DIR -O Save to filename ('-' for stdout) -U Adjust 'User-Agent' field -Y Use proxy ('on' or 'off') ----------------- -- Voytek
