安装
brew install tmux
常用命令
1. 新建会话
$ tmux new -s <name>
2. 退出会话
$ exit
3. 分离会话
$ tmux detach
or
$ ctrl+b d
4. 列出所有会话
$ tmux ls
5. 重新接入回话
$ tmux attach -t <name>
6. 杀死会话
$ tmux kill-session -t <name>
6. 切换会话
$ tmux switch -t <name>
brew install tmux
1. 新建会话
$ tmux new -s <name>
2. 退出会话
$ exit
3. 分离会话
$ tmux detach
or
$ ctrl+b d
4. 列出所有会话
$ tmux ls
5. 重新接入回话
$ tmux attach -t <name>
6. 杀死会话
$ tmux kill-session -t <name>
6. 切换会话
$ tmux switch -t <name>