If the third parameter or *--divisor* is specified, it is used as a speed-up multiplier. For example, a speed-up of 2 makes *scriptreplay* go twice as fast, and a speed-down of 0.1 makes it go ten times slower than the original session.
-During the replay, you can interactively speed up, slow down, or pause the
-playback using the Up, Down, and Space keys.
+During the replay, you can interactively speed up, slow down, pause or step through the
+playback using the Up, Down, Space and Right keys.
== OPTIONS
- *Space*: Toggles pause and unpause. Press this key to pause the playback, and press it again to resume.
- *Up Arrow*: Increases the playback speed. Each press of this key will make the script replay faster by x0.1.
- *Down Arrow*: Decreases the playback speed. Each press of this key will slow down the script replay by x0.1.
+- *Right Arrow*: Advances the playback by one step. Each press of this key will immediately display the current step instead of waiting its specified delay.
== AUTHORS
fputs(_(" space toggles between pause and play\n"), out);
fputs(_(" up-arrow increases playback speed with ten percent\n"), out);
fputs(_(" down-arrow decreases playback speed with ten percent\n"), out);
+ fputs(_(" right-arrow advances the playback by one step\n"), out);
fprintf(out, USAGE_MAN_TAIL("scriptreplay(1)"));
exit(EXIT_SUCCESS);