tmux new window code example
Example 1: tmux new session
tmux new -s session_name
Example 2: tmux resume
tmux attach
# OR
tmux attach-session
Example 3: create a screen screen session tmux
tmux ls | grep : | cut -d. -f1 | awk '{print substr($1, 0, length($1)-1)}' | xargs kill