start new:
tmux
start new with session name:
tmux new -s sess_name
attach:
tmux a # (or at, or attach)
attach to named:
tmux a -t sess_name
list sessions:
tmux ls
tmux kill-session -t sess_name
In tmux, hit the prefix ctrl+b
and then:
:new<CR> new session
s list sessions
$ name session
c create window
w list windows
n next window
p previous window
f find window
, name window
& kill window
% vertical split
" horizontal split
o swap panes
q show pane numbers
x kill pane
d detach
? list shortcuts
: prompt
t big clock
Happy Coding!!!