Created
January 24, 2017 03:46
-
-
Save oflow/fff1a51aa7bc1a6b5bfe3715a76d8bdb to your computer and use it in GitHub Desktop.
tmuxでdetachしたやつが1つだけあった場合は自動でattachする。それ以外はlist-sessionsで一覧表示
This file contains hidden or 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
| if [ -z $TMUX ] && [ `tmux list-sessions | grep -v 'attached' | wc -l` -eq 1 ]; then | |
| tmux attach -t `tmux list-sessions | grep -v 'attached' | awk -F: '{print $1}'` | |
| else | |
| w | |
| if [ -z $TMUX ]; then | |
| echo -e "\ntmux sessions" | |
| tmux list-sessions | |
| fi | |
| fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment