tmux
tmux new -s (Session name)
If only tmux is used, the session name will be assigned automatically. Below to specify the session name.
tmux a
tmux a -t (Session name)
If you do not specify the session name with -t, it will connect to the session that was attached immediately before.
ctrl b + d
tmux ls
tmux kill-session
tmux kill-session -t (Session name)
If no session is specified with -t, the session that was attached immediately before is deleted.
tmux kill-server
ctrl b + [
You can scroll with the arrow keys. ** Press q to exit scroll mode **
Recommended Posts