shell/ls_remote.ksh

12 lines
117 B
Bash
Executable File

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