GoForum › 🌐 V2EX
分享 tmux 快捷方式
wuruxu ·
2026-05-18 22:46 ·
0 次点赞 · 4 条回复
在 .bashrc 添加了下面的快捷方式,用不着每次都输入 tmux …
aa() {
if tmux has-session -t aa 2>/dev/null; then
tmux attach -t aa
else
tmux new -s aa
fi
}
rr() {
if tmux has-session -t rr 2>/dev/null; then
tmux attach -t rr
else
tmux new -s rr
fi
}
4 条回复
添加回复
你还需要 登录
后发表回复
我还是每次都输一下吧。反正也是难得。