I want to download something with wget using a proxy:
wget
HTTP Proxy: 127.0.0.1 Port: 8080
The proxy does not need username and pa
For all users of the system via the /etc/wgetrc or for the user only with the ~/.wgetrc file:
/etc/wgetrc
~/.wgetrc
use_proxy=yes http_proxy=127.0.0.1:8080 https_proxy=127.0.0.1:8080
or via -e options placed after the URL:
-e
wget ... -e use_proxy=yes -e http_proxy=127.0.0.1:8080 ...