Hi, i'm using this little script for one-time wget downloads over privoxy & tor in the terminal or as a "download manager" together with the FlashGot Firefox extension:
#!/bin/dash wget \ -e http_proxy=http://127.0.0.1:8118/ \ -e https_proxy=http://127.0.0.1:8118/ \ --tries=3 \ --no-dns-cache \ --inet4-only \ --directory-prefix=/opt/downloads \ --no-check-certificate \ * --no-cookies \ --user-agent="Mozilla..." \ --header="Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" \ --header="Accept-Language: en-us,en;q=0.5" \ --header="Accept-Encoding: gzip,deflate" \ --header="Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7" \ $1 * depends on your needs - you can check certificates with the opposite and further "certificate" options. -- Ciao Kai http://kairaven.de/ Mail per I2P: http://www.i2p2.de/ *********************************************************************** To unsubscribe, send an e-mail to [email protected] with unsubscribe or-talk in the body. http://archives.seul.org/or/talk/

