#!/bin/ksh echo -n "Remote user: " read remote_user echo -n "Host: " read host mosh $remote_user@$host pwd exit 0