From 3f215c1e3fdb1b2b549f3db634823cda8055687e Mon Sep 17 00:00:00 2001 From: Jeff Geerling Date: Tue, 20 May 2014 14:56:33 -0500 Subject: [PATCH] Add irc SOCKS5 proxy setting. --- .bash_profile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.bash_profile b/.bash_profile index 08f2786..e4daa47 100644 --- a/.bash_profile +++ b/.bash_profile @@ -34,6 +34,11 @@ function route_delete() { sudo route delete 10.0.0.0 } +# Route IRC traffic through one of my servers. +function irc_proxy() { + ssh -vD 6667 geerlingguy@atl1.servercheck.in +} + # Git aliases. alias gs='git status' alias gc='git commit'