5 lines
102 B
Plaintext
5 lines
102 B
Plaintext
|
#!/bin/sh
|
||
|
sshchoice=$(grep -Eo '^[^, ]+' $HOME/.ssh/known_hosts | dmenu)
|
||
|
|
||
|
$TERMINAL -e ssh $sshchoice
|