simple one-liner that configures `LWP::UserAgent` to use the proxy inherited from the shell: ``` my $ua = LWP::UserAgent->new( max_redirect => 0 ); $ua->env_proxy; ```