Quote (mikshaw @ June 02 2008,22:34) | ||||
That should essentially be wget http://mymirror/extension{.info,.md5.txt,} Which *should* execute three instances of wget. It worked that way for me anyway. I typically use gnu wget, which allows for multiple files, but I tested this with busybox from DSL 4.3 |
Quote |
(brace expansion, iirc) should not launch multiple wgets. |
Code Sample |
os.execute(terminal..[[ -title "Downloading ]].. myfile.title..[[" -e sh -c "unset DISPLAY && cd ]]..dirname.. [[ && wget ]]..mirror..myfile.location..[[/]]..myfile.title..[[.md5sum.txt]].. [[ && wget ]]..mirror..myfile.location..[[/]]..myfile.title..[[.info]].. [[ && wget ]]..mirror..myfile.location..[[/]]..myfile.title.. [[ && md5sum -c ]]..myfile.title.. [[.md5.txt && echo Press \"Enter\" to continue && read"]]) |