8 lines
210 B
Bash
8 lines
210 B
Bash
#!/bin/sh
|
|
|
|
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"
|
|
|