diff options
author | Peter Palfrader <peter@palfrader.org> | 2009-05-08 19:18:59 +0000 |
---|---|---|
committer | weasel <weasel@bc3d92e2-beff-0310-a7cd-cc87d7ac0ede> | 2009-05-08 19:18:59 +0000 |
commit | c28d5941c18751112421ac6acb50b1bd81d784f3 (patch) | |
tree | 4498e6876300cbc4253e5e3764ff9f9d4732afd7 /zshfunc | |
parent | 0af45db40a809524fe0b3f7f38d5185717ff8758 (diff) |
two more functions
git-svn-id: svn+ssh://asteria.noreply.org/svn/weaselutils/trunk@393 bc3d92e2-beff-0310-a7cd-cc87d7ac0ede
Diffstat (limited to 'zshfunc')
-rw-r--r-- | zshfunc/safe-restore-ssh-agent-socket | 11 | ||||
-rw-r--r-- | zshfunc/setup-oftc-aliases | 9 |
2 files changed, 20 insertions, 0 deletions
diff --git a/zshfunc/safe-restore-ssh-agent-socket b/zshfunc/safe-restore-ssh-agent-socket new file mode 100644 index 0000000..f4b9751 --- /dev/null +++ b/zshfunc/safe-restore-ssh-agent-socket @@ -0,0 +1,11 @@ +## vim:ft=zsh:foldmethod=marker + +if [ "$SSH_AUTH_SOCK" != "" ] && [ "$SSH_AUTH_SOCK" != "$HOME/.ssh-auth-sock" ] ; then + if ! [ -e "$HOME/.ssh-auth-sock" ] || [ "`readlink $HOME/.ssh-auth-sock`" != "$SSH_AUTH_SOCK" ]; then + echo "Setting ~/.ssh-auth-sock." + rm -f "$HOME/.ssh-auth-sock" + ln -s "$SSH_AUTH_SOCK" "$HOME/.ssh-auth-sock" + fi +elif [ "$SSH_AUTH_SOCK" = "" ] && [ -e "$HOME/.ssh-auth-sock" ]; then + SSH_AUTH_SOCK="$HOME/.ssh-auth-sock"; export SSH_AUTH_SOCK +fi diff --git a/zshfunc/setup-oftc-aliases b/zshfunc/setup-oftc-aliases new file mode 100644 index 0000000..d7c310e --- /dev/null +++ b/zshfunc/setup-oftc-aliases @@ -0,0 +1,9 @@ +## vim:ft=zsh:foldmethod=marker + +cat "$HOME/.oftc-hosts" | while read name ip; do + alias -g $name-ip="$ip" + alias irssi-$name="irssi --home=$HOME/.irssi-MASTER --connect=OFTC-$name" + + alias -g $name-testnet-ip="$ip" + alias irssi-testnet-$name="irssi --home=$HOME/.irssi-MASTER --connect=TESTNET-$name" +done |