Files
oam/knowledge base/asciinema.md
2023-07-09 18:00:36 +02:00

910 B

Asciinema

Terminal session recorder.

Table of contents

  1. TL;DR
  2. Further readings

TL;DR

# Installation.
sudo apt-get install asciinema
brew install 'asciinema'
sudo dnf install 'asciinema'
sudo pacman -S 'asciinema'
python3 -m 'pip' install --user 'asciinema'

# Record sessions locally.
asciinema rec 'path/to/file.cast'
asciinema rec -i 2 'path/to/file.cast' --overwrite

# Record sessions and upload them to the website.
asciinema rec

# Play local sessions.
asciinema play 'path/to/file.cast'

# Share local recordings on the website.
asciinema upload 'path/to/file.cast'

Further readings