Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Set proxy environment variables automatically' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Set proxy environment variables automatically
Authored by: blalor on Jan 13, '04 03:39:49PM
actually, that alias doesn't work. It gets expanded when it is declared, instead of at excecution time. Try this, with the original setproxy: in ~/.bashrc:

my_wget() {
    eval $(setproxy)
    wget $*
}

alias wget='my_wget'


[ Reply to This | # ]