diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2011-03-07 17:25:09 +0100 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2011-03-07 17:25:09 +0100 |
commit | 9b90623acc137beff954bb78dcc0f8cb87f37c8c (patch) | |
tree | 4cd8db6648fb8d1c71e80e36feb977c920fbd0b6 | |
parent | 4ff3482c7fe13bd1a82ed8a673295aaa56a8136f (diff) |
add ssh aliases
-rw-r--r-- | .zsh/00_skeleton | 2 | ||||
-rw-r--r-- | .zsh/zshrc/30_aliases | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/.zsh/00_skeleton b/.zsh/00_skeleton index dea4a6a..c58f77f 100644 --- a/.zsh/00_skeleton +++ b/.zsh/00_skeleton @@ -2,7 +2,7 @@ # # <description> # -# Copyright © 2010 Tobias Klauser <tklauser@distanz.ch> +# Copyright © 2011 Tobias Klauser <tklauser@distanz.ch> # Released under the terms of the Artistic Licence 2.0 # # Source repository: git://git.distanz.ch/dotfiles/zsh.git diff --git a/.zsh/zshrc/30_aliases b/.zsh/zshrc/30_aliases index caedfd1..b0c12fe 100644 --- a/.zsh/zshrc/30_aliases +++ b/.zsh/zshrc/30_aliases @@ -34,4 +34,9 @@ alias top10='print -l ? ${(o)history%% *} | uniq -c | sort -nr | head -n 10' # bofh fortunes alias bofh='fortune bofh-excuses' +# host aliases +alias distanz="ssh distanz.ch -t \"screen -dR\"" +alias sym=distanz +alias lema="ssh lema.distanz.ch -t \"screen -dR\"" + # vim:ft=zsh |