參考: https://www.ruanyifeng.com/blog/2019/10/tmux.html
新建會話:
tmux
或
tmux new -s my_session
分離對話:
Ctrl+b, d
或
tmux detach
結束對話:
exit
或
Ctrl+d
列出對話:
tmux ls
恢復對話:
# 使用會話編號
$ tmux attach -t 0
# 使用會話名稱
$ tmux attach -t <session-name>