Quote | (brace expansion, iirc) should not launch multiple wgets. | Quite right, my mistake. Well, that's a bummer. I'm certain I did have it working with busybox at some point, though.
That's going to make for one long execute string if it needs to be split up into three separate wget commands. Open to any better suggestions, as always.
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"]]) |
|