最近在学Linux,用到tmux这个命令,看到很多快捷键的介绍,个人觉得不太好用,因此把几个常用的命令记录下来,以便以后学习和使用。
 
常用tmux commands:
- tmux ls                                                       // 列出tmux会话列表
- tmux new -s amy
- tmux new -s "session_name"                         // 创建一个seesion
- tmux new -s "session_name"  -d                    // 创建一个seesion, 并在后台运行
- tmux attach -t session                                  // 删除指定会话
- tmux split-window -v                                    // 上下分割成两个pane
- tmux split-window -h                                    // 左右分割成两个
- tmux new-window -n "windowname"               // 创建新窗口
若以后学到其他tmux的命令会在增加。
tmux commands
原文:http://www.cnblogs.com/beyongblue/p/4215605.html