1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 02:02:07 +02:00
tldr/pages/linux/scriptlive.md
Alpha 49fff56b10
scriptlive: add page (#15412)
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
2025-01-04 19:56:37 +01:00

21 lines
672 B
Markdown

# scriptlive
> Execute a typescript created by the `script` command in real-time.
> See also: `script`.
> More information: <https://manned.org/scriptlive>.
- Execute a typescript in real-time:
`scriptlive {{path/to/timing_file}} {{path/to/typescript}}`
- Execute a typescript at double the original speed:
`scriptlive {{path/to/timing_file}} {{path/to/typescript}} --divisor 2`
- Execute a typescript created using `--log-in` option of `script`:
`scriptlive --log-in {{path/to/stdin_log_file}} {{path/to/typescript}}`
- Execute a typescript waiting at most 2 seconds between each command:
`scriptlive {{path/to/timing_file}} {{path/to/typescript}} --maxdelay 2`