Forrest logo
back to context overview

asciinema

List of commands for asciinema:

  • asciinema:tldr:03080 asciinema: Print the full output of a locally saved recording.
    $ asciinema cat ${filename}.cast
    try on your machine
    explain this command
  • asciinema:tldr:1947d asciinema: Make a new recording (once finished, user will be prompted to upload it or save it locally).
    $ asciinema rec
    try on your machine
    explain this command
  • asciinema:tldr:1b197 asciinema: Make a new recording and save it to a local file.
    $ asciinema rec ${filename}.cast
    try on your machine
    explain this command
  • asciinema:tldr:1c4f9 asciinema: Replay a terminal recording hosted on asciinema.org.
    $ asciinema play https://asciinema.org/a/${cast_id}
    try on your machine
    explain this command
  • asciinema:tldr:256fe asciinema: Associate the local install of `asciinema` with an asciinema.org account.
    $ asciinema auth
    try on your machine
    explain this command
  • asciinema:tldr:867b8 asciinema: Replay a terminal recording from a local file.
    $ asciinema play ${filename}.cast
    try on your machine
    explain this command
  • asciinema:tldr:dbd69 asciinema: Make a new recording, limiting any idle time to at most 2.5 seconds.
    $ asciinema rec -i ${2-5}
    try on your machine
    explain this command
  • asciinema:tldr:fdc3f asciinema: Upload a locally saved terminal session to asciinema.org.
    $ asciinema upload ${filename}.cast
    try on your machine
    explain this command
back to context overview