Add ssh alias for non-checking ssh.

This commit is contained in:
David Tomaschik
2020-04-05 23:17:35 -07:00
parent eec3c9ba7a
commit aa6a2e806d

View File

@@ -41,3 +41,6 @@ alias gettemp='printf "%02.2f\n" "$(cat /sys/class/thermal/thermal_zone0/temp)e-
# get git working directory
alias gitroot="git rev-parse --show-toplevel"
# SSH without host key checking
alias sshanon="ssh -oUserKnownHostsFile=/dev/null -oStrictHostKeyChecking=no"