tmux 使用小记
参考: 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>
杀死对话:
# 使用会话编号
$ tmux kill-session -t 0
# 使用会话名称
$ tmux kill-session -t <session-name>
转载注意标注出处:
转自Cold_Chair的博客+原博客地址