# simple shell script for ssh
# i configure the terminal i use for ssh
# to run this on startup
#
#joed

# /bin/bash
echo -e "CONNECT TO: "
read host
echo -e "USERNAME: "
read name
ssh -l $name $host