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 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