Skip to content

Commit

Permalink
Fix typo in help text
Browse files Browse the repository at this point in the history
  • Loading branch information
perk11 committed Sep 21, 2023
1 parent 3d489a3 commit 3228448
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arguments_parsing.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ void print_usage(char *binary_name) {
printf("Usage: %s [OPTIONS] shell_command_to_run [shell_command_arguments]\n", binary_name);
printf("\nOptions:\n");
printf(" --timeout|-t <seconds> Set the user idle time after which the command can run in seconds (default: 300 seconds).\n");
printf(" --start-monitor-after|-a <ms> Set an initial delay in milliseconds before monitoring starts. During this time command runs unrestricted. This helps to catch errors happening after shortly after the execution has started. (default: 300 ms).\n");
printf(" --start-monitor-after|-a <ms> Set an initial delay in milliseconds before monitoring starts. During this time command runs unrestricted. This helps to catch errors happening shortly after the execution has started. (default: 300 ms).\n");
printf(" --pause-method|-m <method> Specify method for pausing the command when user is not idle. Available parameters: SIGTSTP (can be ignored by the program), SIGSTOP (can not be ignored). (default: SIGTSTP).\n");
printf(" --verbose|-v Enable verbose output for monitoring.\n");
printf(" --debug Enable debugging output.\n");
Expand Down

0 comments on commit 3228448

Please sign in to comment.