# Creates a new tmux session named 'mysession'
tmux new -s mysession
# Lists the current sessions
tmux ls
# Attaches to an existing session
tmux attach -t mysession
# Kills a tmux session
tmux kill-session -t mysession
# Creates a new tmux session named 'mysession'
tmux new -s mysession
# Lists the current sessions
tmux ls
# Attaches to an existing session
tmux attach -t mysession
# Kills a tmux session
tmux kill-session -t mysession