When I run this command:
https_proxy=http://myproxy.com/ aws [aws-param]
the proxy is picked up by the aws
command line tool.
However - when I do this:
https_proxy=http://myproxy.com/
aws [aws-param]
the aws
command doesn't pick up the proxy.
To me, they're the same from a unix point of view. Is this something about the way python reads environment variables?
My question is: Why does an inline variable definition work but a previous line does not for an aws command?