From 49fff56b10bf924b3a6009a4b6ba557a7fb7e371 Mon Sep 17 00:00:00 2001 From: Alpha <43486986+sudoAlphaX@users.noreply.github.com> Date: Sat, 4 Jan 2025 18:56:37 +0000 Subject: [PATCH] scriptlive: add page (#15412) Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> --- pages/linux/scriptlive.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 pages/linux/scriptlive.md diff --git a/pages/linux/scriptlive.md b/pages/linux/scriptlive.md new file mode 100644 index 00000000000000..00110b1c0568db --- /dev/null +++ b/pages/linux/scriptlive.md @@ -0,0 +1,21 @@ +# scriptlive + +> Execute a typescript created by the `script` command in real-time. +> See also: `script`. +> More information: . + +- 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`