#!/usr/bin/shell

# Use this code to easily connect to your server using SSH
# Great for quick connecting to sdf.lonestar.org
# Change the shebang above for your bin
# sdf.lonestar.org's shebang should be: #!/usr/pkg/bin/shell
# cygwin's shebang should be: #!/usr/bin/sh
# Created 4/8/03
# M. Carter Brown

echo -e CONNECT TO:

read server

echo -e USERNAME:

read name

ssh -l $name $server