asciinema 使用指南
asciinema 基本操作及搭配 tmux 录制多个屏幕

安装

# debian
sudo apt-get install asciinema

# mac
brew install asciinema

See other installation options

基本使用

# 开始录制
asciinema rec

# 结束录制 
exit 
# 或者 ctrl+d

# 播放录制
asciinema play /path/to/asciicast.cast


### 多屏
```bash

# debian
apt install tmux
# mac
brew install tmux

# 开始录制
asciinema rec 
tmux

tmux 基本操作

创建新窗口: ctrl+b c
切换窗口: ctrl+b 0-9
分屏: ctrl+b %ctrl+b "
切换分屏: ctrl+b 方向键
关闭分屏: ctrl+b x
attach: tmux attach-session -t 0
ls: tmux ls
kill: tmux kill-session -t 0


最后修改于 2023-12-09