Update sshjump.new

This commit is contained in:
12nick12 2018-06-05 15:46:42 -04:00 committed by GitHub
parent e77124fdd9
commit b41d704705
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -9,13 +9,13 @@ fi
if [ $arg1 = host ]; then
user=$2
host=$3
port=$(sqlite3 /opt/sshjump/sshjump.db 'select port from sshjump where host = host')
port=$(sqlite3 /opt/sshjump/sshjump.db "select port from sshjump where host = \"$host\"")
ssh -p $port $user@localhost
fi
if [ $arg1 = id ]; then
user=$2
id=$3
port=$(sqlite3 /opt/sshjump/sshjump.db 'select port from sshjump where id = id')
port=$(sqlite3 /opt/sshjump/sshjump.db "select port from sshjump where id = \"$id\"")
ssh -p $port $user@localhost
fi