8 lines
107 B
Bash
8 lines
107 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
term=x-terminal-emulator
|
||
|
term=xterm
|
||
|
host="$(basename $0)"
|
||
|
|
||
|
"${term}" -e "ssh ${host}; sleep 10"
|