mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-15 08:35:24 +02:00

* pages.nl/common/a*: update Dutch translation, fix English typo's * Update pages/common/asciinema.md * Update act.md * Update pages.nl/common/act.md * Update age-keygen.md Co-authored-by: Leon <leonvsc@users.noreply.github.com> * pages.nl/common/b*: update Dutch translation (#16248) * pages.nl/common/b*: update Dutch translation * Update pages.nl/common/bc.md Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> --------- Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> * certbot: update Dutch translation * Update certbot.md * Fix typos --------- Co-authored-by: Leon <leonvsc@users.noreply.github.com> Co-authored-by: Managor <42655600+Managor@users.noreply.github.com>
33 lines
978 B
Markdown
33 lines
978 B
Markdown
# asciinema
|
|
|
|
> Record and replay terminal sessions, and optionally share them on <https://asciinema.org>.
|
|
> See also: `terminalizer`.
|
|
> More information: <https://docs.asciinema.org/manual/cli/usage>.
|
|
|
|
- Associate the local install of `asciinema` with an asciinema.org account:
|
|
|
|
`asciinema auth`
|
|
|
|
- Make a new recording and save it to a local file (finish it with `<Ctrl d>` or type `exit`):
|
|
|
|
`asciinema rec {{path/to/recording.cast}}`
|
|
|
|
- Replay a terminal recording from a local file:
|
|
|
|
`asciinema play {{path/to/recording.cast}}`
|
|
|
|
- Replay a terminal recording hosted on <https://asciinema.org>:
|
|
|
|
`asciinema play https://asciinema.org/a/{{cast_id}}`
|
|
|
|
- Make a new recording, limiting any idle time to at most 2.5 seconds:
|
|
|
|
`asciinema rec {{[-i|--idle-time-limit]}} 2.5`
|
|
|
|
- Print the full output of a locally saved recording:
|
|
|
|
`asciinema cat {{path/to/recording.cast}}`
|
|
|
|
- Upload a locally saved terminal session to asciinema.org:
|
|
|
|
`asciinema upload {{path/to/recording.cast}}`
|