tmux简单使用

tmux [new -s 会话名 -n 窗口名]  # 新建会话
tmux at [-t 会话名]  # 恢复会话
tmux ls  # 列出会话
tmux kill-session -t 会话名  # 关闭会话

在 Tmux 中,按下 Tmux 前缀 ctrl+b,然后:
d  临时退出会话(会话仍在后台运行)

https://gist.github.com/ryerh/14b7c24dfd623ef8edc7  (tmux速查表) 

猜你喜欢

转载自blog.csdn.net/xiaocszn/article/details/86169926