TMUX Approximate structure diagram:
1. Tmux LS column thick so session
2.tmux attach-t Foo Select a session
3.tmux kill-session-t Foo kills a session
4.tmux Split-window-h left and right split screen
5.tmux split-window-v up and down sub-screen
6.tmux Select-pane-l Select the current left pane
7.tmux Select-pane-r Select the current right pane
8.tmux Select-pane-u Select the current top pane
9.tmux select-pane-d Select the pane below the current
Some shortcut keys
The default is that C-b can be modified to c-a
Tmux Unbind C-b
Tmux set-g prefix c-a
Left and right pane toggle shortcut, ALT + arrow (UP and down cursors)
Tmux bind-n M-left select-pane-l
Tmux bind-n m-right Select-pane-r
Tmux bind-n m-up Select-pane-u
Tmux bind-n M-down select-pane-d
Close Current Pane
Tmux Kill-pane
Reference Address:
Http://lukaszwrobel.pl/blog/tmux-tutorial-split-terminal-windows-easily
Http://hyperpolyglot.org/multiplexers
Tmux Simple Command