tmux new -s sessionName
## Detached mode:
#tmux new -d -s sessionName
tmux ls
tmux a -t sessionName
C-a + d
tmux send-keys -t sessionName.0 "echo 'Hello world'" ENTER
tmux splitw -h -p 50 -t sessionName:1.0
# -p percentage of the display for the created pane
# -h or -v # horizontal/vertical splitting
## if we need to do it again we may need to select the pane we want to split first
tmux select-pane -t sessionName:1.0
tmux splitw -h -p 50 -t sessionName:1.0