From: Karel Zak Date: Wed, 19 Jun 2019 13:56:58 +0000 (+0200) Subject: scriptreplay: cleanup usage() X-Git-Tag: v2.35-rc1~161 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=02a51ce1e3d8cd7b7d41fc8d84018f421b1aa553;p=thirdparty%2Futil-linux.git scriptreplay: cleanup usage() Signed-off-by: Karel Zak --- diff --git a/term-utils/scriptreplay.c b/term-utils/scriptreplay.c index d5b12331f4..cfc0ca43a6 100644 --- a/term-utils/scriptreplay.c +++ b/term-utils/scriptreplay.c @@ -371,11 +371,10 @@ usage(void) fputs(_("Play back terminal typescripts, using timing information.\n"), out); fputs(USAGE_OPTIONS, out); - fputs(_(" -t, --timing script timing output file\n" - " -s, --typescript script terminal session output file\n" - " -d, --divisor speed up or slow down execution with time divisor\n" - " -m, --maxdelay wait at most this many seconds between updates\n" - ), out); + fputs(_(" -t, --timing script timing log file\n"), out); + fputs(_(" -s, --typescript script data log file\n"), out); + fputs(_(" -d, --divisor speed up or slow down execution with time divisor\n"), out); + fputs(_(" -m, --maxdelay wait at most this many seconds between updates\n"), out); printf(USAGE_HELP_OPTIONS(25)); printf(USAGE_MAN_TAIL("scriptreplay(1)"));