5 lines
65 B
Bash
5 lines
65 B
Bash
|
# Kill all ssh sockets.
|
||
|
function sshka() {
|
||
|
rm ~/.ssh/*.socket
|
||
|
}
|