MySSH

#!/bin/sh
# Conecta a una máquina por ssh (myssh.sh)
if [ "$#" -eq "2" ]; then
 ssh $1@$2
else
 echo "Debes especificar nombre y usuario"
fi