Skip to content

Instantly share code, notes, and snippets.

@oflow
Created January 24, 2017 03:46
Show Gist options
  • Select an option

  • Save oflow/fff1a51aa7bc1a6b5bfe3715a76d8bdb to your computer and use it in GitHub Desktop.

Select an option

Save oflow/fff1a51aa7bc1a6b5bfe3715a76d8bdb to your computer and use it in GitHub Desktop.
tmuxでdetachしたやつが1つだけあった場合は自動でattachする。それ以外はlist-sessionsで一覧表示
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