File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ struct Help {
38
38
<< " -h --help Show the help display, then exit." << ' \n '
39
39
<< " -v --version Print the current version number, then exit." << ' \n '
40
40
<< " -t -i --interactive Always use interactive terminal mode. Any one-off commands are executed first." << ' \n '
41
- << " -q -- quiet Don't print server response packets ." << ' \n '
41
+ << " -q -s -- quiet Silent mode, prevents most console output from being printed ." << ' \n '
42
42
<< " -w <ms> --wait <ms> Time in milliseconds to wait between each command in commandline mode." << ' \n '
43
43
<< " -n --no-color Disable colorized console output." << ' \n '
44
44
<< " -Q --no-prompt Disables the prompt in interactive mode, and command echo in commandline mode." << ' \n '
Original file line number Diff line number Diff line change @@ -267,7 +267,7 @@ int main(const int argc, char** argv)
267
267
const config::Locator cfg_path (myDir, myNameNoExt);
268
268
269
269
// Argument: [-q|--quiet]
270
- Global.quiet = args.check_any <opt::Option, opt::Flag>(' q' , " quiet" );
270
+ Global.quiet = args.check_any <opt::Option, opt::Flag>(' q' , ' s ' , " quiet" );
271
271
// Argument: [-h|--help]
272
272
if (args.check_any <opt::Flag, opt::Option>(' h' , " help" )) {
273
273
std::cout << Help (myName) << std::endl;
You can’t perform that action at this time.
0 commit comments