Skip to content

Instantly share code, notes, and snippets.

@zhuangya
Created July 24, 2017 07:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zhuangya/83cc2fce533df531fe92a12b5931af53 to your computer and use it in GitHub Desktop.
Save zhuangya/83cc2fce533df531fe92a12b5931af53 to your computer and use it in GitHub Desktop.
t in shell
t() {
if [ "$#" -eq 0 ]
then
tmux attach
else
tmux attach -t $@ || tmux new-session -s $@
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment