业精于勤而荒于嬉,行成于思而毁于随

Tmux使用

Posted on By Jack Sun

creates a new tmux session

tmux new -s session_name

attach session

tmux attach -t session_name

list session

tmux ls

open new tab

hit Ctrl + B and then C

Moving among tabs

To move among these tabs hit the following keys:

    Ctrl + B and then n to go to the next tab on the right
    Ctrl + B and then p to go to the previous tab on the left
    Ctrl + B and then {number} to go to the tab with number equal to {number} (e.g. 0 to go to the first tab)

Closing a tab

To close a tab, move to it and then hit Ctrl + B and then x and then hit y and Enter to confirm closing of this tab.