Last active
March 23, 2020 15:21
-
-
Save jdoconnor/6876052 to your computer and use it in GitHub Desktop.
loop through tmux windows, control c and exit
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tmux list-window | awk -F":" '{system("tmux select-window -t "$1"; tmux send-keys C-c; tmux send-keys \"exit\"; tmux send-keys Enter")}'; tmux attach |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment