$ term-transcript exec -I 300ms -T 100ms 'some-non-existing-command' \
  '[ -x some-non-existing-file ]' > fail.svg
$ term-transcript print fail.svg
----------  Input #1 ----------
$ some-non-existing-command
Exit status: 127 (failure)

---------- Output #1 ----------
sh: 1: some-non-existing-command: not found

----------  Input #2 ----------
$ [ -x some-non-existing-file ]
Exit status: 1 (failure)

---------- Output #2 ----------