Skip to content

Instantly share code, notes, and snippets.

@patrickhulce
Created July 15, 2016 17:55
Show Gist options
  • Save patrickhulce/37c8058ebb276cc66cc20387eb2e79cb to your computer and use it in GitHub Desktop.
Save patrickhulce/37c8058ebb276cc66cc20387eb2e79cb to your computer and use it in GitHub Desktop.
Kill all open SSH mux sessions
#!/bin/sh
ps aux | grep ssh[:] | awk {'print $2'} | xargs kill -9
@wohlford
Copy link

wohlford commented May 6, 2020

That didn't work for me as a Bash alias, but this did:

alias killall-ssh="ps aux | grep ssh[:] | tr -s ' ' | cut -d ' ' -f 2 | xargs kill"

@patrickhulce
Copy link
Author

thanks for sharing @wohlford! Just curious how did you come across this I honestly forgot it existed 😆

@wohlford
Copy link

Lol. Basic Google search, man.

@jepper
Copy link

jepper commented Aug 5, 2022

for absolute simplicity, configure your alias with pgrep -f ssh | xargs kill

@wohlford
Copy link

wohlford commented Aug 6, 2022

@jepper damn. Didn't know that command existed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment