View gist:e64ebf1138caffce8fa2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# "Wi-Fi" is the name of your internet service. View your OS X | |
# network settings to see a list of your services. | |
# | |
work-proxy () { | |
if [ "$1" == 'off' ]; then | |
networksetup -setsocksfirewallproxystate "Wi-Fi" off | |
kill $(ps aux | grep '[s]sh -Nf -D 7070 user@proxy.work.com' | awk '{print $2}') | |
else | |
ssh -Nf -D 7070 user@proxy.work.com |