Skip to content

Instantly share code, notes, and snippets.

@Thomashrb
Created March 20, 2024 22:56
Show Gist options
  • Save Thomashrb/d832a40cb64177dacc1dc9866a057134 to your computer and use it in GitHub Desktop.
Save Thomashrb/d832a40cb64177dacc1dc9866a057134 to your computer and use it in GitHub Desktop.
select tmux session and kill it
for s in \$(tmux list-sessions | awk '{print \$1}' | rg ':' -r '' | fzy); do tmux kill-session -t \$s; done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment