#!/usr/local/bin/bash # SSH # # Douglas Thrift # # $Id$ while true; do if read -ep 'login as: ' -r user; then ssh -l "$user" $1 fi done