Created
December 6, 2011 06:46
-
-
Save cobbweb/1437094 to your computer and use it in GitHub Desktop.
SSH connect shortcuts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# © Andrew Cobby <[email protected]> | |
# Creates shortcuts to log into remote servers | |
# Setup private/public key auth for passwordless logins | |
# USAGE: $ ./connect-to.sh example | |
# Defaults | |
user="root" | |
port="22" | |
key=NULL | |
case "$1" in | |
"example") | |
user="ubuntu" | |
key="/path/to/key.pem" | |
server="182.160.128.229" | |
;; | |
esac | |
if [ -n $key ]; then | |
key="-i $key" | |
fi | |
ssh $key $user@$server -p$port $2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment