JeremyTubongbanua / learn_tmux

Learning how to use tmux

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

learn_tmux

Learning how to use tmux

Install tmux on Mac (with Homebrew)

homebrew install tmux

Using tmux

  1. New session with name lemonade
tmux new -s lemonade
  1. Rename a session with Ctrl + b + $ (Shift + 4)

Ctrl + b + $

  1. Detach from current tmux session

Ctrl + b + d

  1. Delete all tmux sessions
tmux kill-ses -a
  1. Attach to an existing tmux session
tmux a -t <session>
  1. Create a session but detatch (-d)
tmux new -d -s lemonade

About

Learning how to use tmux