官方wiki: https://github.com/tmux/tmux/wiki
Tmux Cheatsheet
Sessions
Start a new session
$ tmux
$ tmux new -s mysession
:new
Show all sessions
tmux ls
Attach to last session
$ tmux a
$ tmux at
$ tmux attach
$ tmux attach-session
Attach to a session with the name mysession
$ tmux a -t mysession
$ tmux at -t mysession
$ tmux attach -t mysession
$ tmux attach-session -t mysession
Tmux commands
C-b (
Move to previous session
C-b )
Move to next session
C-b $
Rename session
C-b s
Show all sessions
Windows
C-b c
Create window
C-b &
Close current window
C-b p
Previous window
C-b n
Next window
C-b 0...9
Select window by number
Copy mode
C-b [
Enter copy mode to copy text or view the history.
C-s
then type the string to search for and press Enter
.
- Press
n
to next.
Autostart
if command -v tmux &> /dev/null && [ -n "$PS1" ] && [[ ! "$TERM" =~ screen ]] && [[ ! "$TERM" =~ tmux ]] && [ -z "$TMUX" ]; then
exec tmux
fi
文档信息
- 本文作者:SryImNoob
- 本文链接:https://sryimnoob.com/wiki/tmux/
- 版权声明:自由转载-非商用-非衍生-保持署名(创意共享3.0许可证)