2024-07-16 11:37:55 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2024-07-16 14:04:39 +00:00
|
|
|
export all_proxy="socks5://127.0.0.1:3128" # FIXME: majuscules ou minuscules pour SSH ?
|
2024-07-16 11:37:55 +00:00
|
|
|
export http_proxy="socks5://127.0.0.1:3128"
|
|
|
|
export https_proxy="socks5://127.0.0.1:3128"
|
|
|
|
export no_proxy="localhost,127.0.0.1"
|
|
|
|
|
|
|
|
echo "Warning: this terminal is now configured to use a SOCKS5 proxy"
|
|
|
|
|