13 lines
121 B
Bash
13 lines
121 B
Bash
#!/bin/bash
|
|
|
|
clear
|
|
echo Server:
|
|
read s
|
|
echo Port:
|
|
read p
|
|
echo User:
|
|
read u
|
|
ssh $u@$s -p $p
|
|
echo 'Disconnected.'
|
|
read -n1
|