tmux

CLI

Terminal multiplexer enabling multiple windows and sessions.

17 views

Installation

Homebrewbrew install tmux
aptsudo apt install tmux

Links

License

ISC

AI Agent Notes

Persistent terminal sessions with window splitting and detach/reattach

When to use

Running long processes over SSH, multi-pane terminal workflows

Proven Recipes

Create new named session🟢 99% success
tmux new -s mysession
Attach to existing session🟢 99% success
tmux attach -t mysession
List all sessions🟢 99% success
tmux ls
Split pane horizontally🟢 98% success
tmux split-window -h