John R Pierce wrote:
> Clint Dilks wrote:
>   
>> export http_proxy=\/a...@proxy.example.com:80
>> export http_proxy='\/a...@proxy.example.com:80'
>> export http_proxy="\/a...@proxy.example.com:80"
>> export http_proxy=\\\/a...@proxy.example.com:80
>>   
>>     
>
> I think I'd try...
>
>     export http_proxy="\\/a...@proxy.example.com:80"
>
> which I didn't see in your examples.  
>
> but... I thought it was user:passw...@hostname, not passw...@hostname ??
>
>
> _______________________________________________
> CentOS mailing list
> CentOS@centos.org
> http://lists.centos.org/mailman/listinfo/centos
>
>   
it is sorry

These should all read

export http_proxy=http://<user>:\/a...@proxy.example.com:80
export http_proxy='http://<user>:\/a...@proxy.example.com:80'
export http_proxy="http://<user>:\/a...@proxy.example.com:80"
export http_proxy=http://<user>:\\\/a...@proxy.example.com:80
  

and now

export http_proxy="http://<user>:\\/a...@proxy.example.com:80"
_______________________________________________
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos

Reply via email to