Tmux
安装
# Ubuntu 或 Debian
$ sudo apt install tmux
# Mac
$ brew install tmux
配置
打开.tmux.conf
# pane鼠标操作
# Enable mouse mode (tmux 2.1 and above)
set -g mouse on
# Enable oh my zsh in tmux
# 如果出现exited闪退情况,需要调整为/bin/bash然后重新激活
set -g default-command /bin/zsh
# Mouse based copy
bind-key -T copy-mode-vi MouseDragEnd1Pane send -X copy-pipe-and-cancel "reattach-to-user-namespace pbcopy"
bind-key -T copy-mode MouseDragEnd1Pane send -X copy-pipe-and-cancel "reattach-to-user-namespace pbcopy"
配置完成执行source .tmux.conf
常用命令
# 开启新会话
tmux new -s name
# 断开连接
tmux detach
# 接入会话
tmux attach -t name
# 窗口分离
# 划分上下两个窗格
tmux split-window
# 划分左右两个窗格
tmux split-window -h
# 列出会话
tmux ls
# 杀掉会话
tmux kill-session -t <session-name>
参考
https://github.com/tmux/tmux/wiki
http://www.ruanyifeng.com/blog/2019/10/tmux.html
https://blog.csdn.net/fk1174/article/details/79220227