安裝
brew install tmux
常用命令
1. 新建會(huì)話
$ tmux new -s <name>
2. 退出會(huì)話
$ exit
3. 分離會(huì)話
$ tmux detach
or
$ ctrl+b d
4. 列出所有會(huì)話
$ tmux ls
5. 重新接入回話
$ tmux attach -t <name>
6. 殺死會(huì)話
$ tmux kill-session -t <name>
6. 切換會(huì)話
$ tmux switch -t <name>