mirror of
https://github.com/wez/wezterm.git
synced 2024-11-10 06:34:17 +03:00
24 lines
423 B
Bash
Executable File
24 lines
423 B
Bash
Executable File
#!/bin/bash
|
|
# Replays a recorded session
|
|
TRANSCRIPT="$1"
|
|
|
|
if test -z "$TRANSCRIPT" -o ! -f "$TRANSCRIPT" ; then
|
|
echo "usage: wt-replay TRANSCRIPT.tgz"
|
|
exit 1
|
|
fi
|
|
|
|
WHERE=`mktemp -d`
|
|
tar xzf "$TRANSCRIPT" -C $WHERE
|
|
|
|
echo "--- Starting replay ---"
|
|
case $OSTYPE in
|
|
darwin*)
|
|
script -p $WHERE/*.typescript
|
|
;;
|
|
linux*)
|
|
scriptreplay $WHERE/*.timing $WHERE/*.typescript
|
|
;;
|
|
esac
|
|
echo "--- replay complete ---"
|
|
|