De homem curl:
-x, --proxy <[protocol://][user@password]proxyhost[:port]>
Use the specified HTTP proxy.
If the port number is not specified, it is assumed at port 1080.
Para uso geral, declare variáveis de ambiente para http / https
export http_proxy=http://your.proxy.server:port/
export https_proxy=$http_proxy
- edite o /etc/bash.bashrc adicione ao final do arquivo:
export http_proxy=http://username:[email protected]:port/ export https_proxy=$http_proxy export ftp_proxy=http://username:[email protected]:port/
- OU proxy sem nome de usuário e senha -:
export http_proxy=http://proxyserver.com:port/ export https_proxy=$http_proxy export ftp_proxy=http://proxyserver.com:port/