Table des matières

tmux sessions

tmux (rempl. screen) teminal multiplexer

main commands

# Start a new session or attach to an existing session named mysession

  tmux new-session -A -s mysession

# kill/delete session “mysession”

  kill/delete session mysession

# Show all sessions

  tmux ls

# Attach to session radeff

  tmux attach -t radeff

# Attach to last session

  tmux attach-session

Description

Tutos