]> granicus.if.org Git - sudo/commitdiff
Add -n and -R options to help; reported by Radovan Sroka
authorTodd C. Miller <Todd.Miller@sudo.ws>
Tue, 11 Dec 2018 16:17:15 +0000 (09:17 -0700)
committerTodd C. Miller <Todd.Miller@sudo.ws>
Tue, 11 Dec 2018 16:17:15 +0000 (09:17 -0700)
plugins/sudoers/sudoreplay.c

index 77317c6f7423f8f5ddb9174cfda00502431db6eb..a447cd0e4cf0f49937b3685a9f12cd6d4cb64e70 100644 (file)
@@ -1617,14 +1617,16 @@ help(void)
     (void) printf(_("%s - replay sudo session logs\n\n"), getprogname());
     usage(0);
     (void) puts(_("\nOptions:\n"
-       "  -d, --directory=dir  specify directory for session logs\n"
-       "  -f, --filter=filter  specify which I/O type(s) to display\n"
-       "  -h, --help           display help message and exit\n"
-       "  -l, --list           list available session IDs, with optional expression\n"
-       "  -m, --max-wait=num   max number of seconds to wait between events\n"
-       "  -S, --suspend-wait   wait while the command was suspended\n"
-       "  -s, --speed=num      speed up or slow down output\n"
-       "  -V, --version        display version information and exit"));
+       "  -d, --directory=dir    specify directory for session logs\n"
+       "  -f, --filter=filter    specify which I/O type(s) to display\n"
+       "  -h, --help             display help message and exit\n"
+       "  -l, --list             list available session IDs, with optional expression\n"
+       "  -m, --max-wait=num     max number of seconds to wait between events\n"
+       "  -n, --non-interactive  no prompts, session is sent to the standard output\n"
+       "  -R, --no-resize        do not attempt to re-size the terminal\n"
+       "  -S, --suspend-wait     wait while the command was suspended\n"
+       "  -s, --speed=num        speed up or slow down output\n"
+       "  -V, --version          display version information and exit"));
     exit(0);
 }