Skip to content

Latest commit

 

History

History
20 lines (19 loc) · 334 Bytes

tmux.md

File metadata and controls

20 lines (19 loc) · 334 Bytes

Motivation

Let your cmd terminal run in the backend.

  1. Create a screen/session
tmux new -s session_name
  1. Detach from a session: ctrl+b and then type the word: d
  2. List the tmux sessions
tmux ls
  1. Attach the session:
tmux a -t session_name
  1. Kill the session:
tmux kill-session -t session_name