]> arthur.barton.de Git - OhMyZshExtensions.git/blob - plugins/ssh/ssh.plugin.zsh
Fixed indentation, use tabs (not spaces)
[OhMyZshExtensions.git] / plugins / ssh / ssh.plugin.zsh
1 # ssh.plugin.zsh
2 # 2015-03-17, alex@barton.de
3
4 sshnew ()
5 {
6         ssh -o "StrictHostKeyChecking no" "$@"
7 }
8
9 sshtmp ()
10 {
11         ssh -o "StrictHostKeyChecking no" -o "UserKnownHostsFile /dev/null" "$@"
12 }