#!/bin/ash
# ssh wrapper
# by M.A. 

read -p "hostname: " host
read -p "username: " user 

exec ssh -l $user $host
