#!/bin/bash clear echo Server: read s echo Port: read p echo User: read u ssh $u@$s -p $p echo 'Disconnected.' read -n1