Changes between Initial Version and Version 1 of Ticket #48164
- Timestamp:
- Jun 25, 2015, 1:44:37 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #48164
-
Property
Status
changed from
new
toclosed
-
Property
Resolution
changed from
to
invalid
-
Property
Status
changed from
-
Ticket #48164 – Description
initial v1 2 2 3 3 The following command will start the recording of a terminal session (which can be ended by typing "exit" or hitting 'ctrl+D'): 4 5 asciinema rec -w 1 my.session 4 {{{ 5 asciinema rec -w 1 my.session 6 }}} 6 7 7 8 The `-w 1` parameter will limit periods of non-activity to 1 second max. The next command will replay the same session: 8 9 asciinema play my.session 9 {{{ 10 asciinema play my.session 11 }}} 10 12 11 13 The software is Free (GPL3), with source code (written in Go and JavaScript) on GitHub: 12 13 https://github.com/asciinema/asciinema 14 {{{ 15 https://github.com/asciinema/asciinema 16 }}} 14 17 15 18 The files it writes ('my.session' above) are Unicode text files, and can easily be edited after recording (f.e. to fix typos). … … 18 21 19 22 https://asciinema.org/a/22364 20