The -v/--verbose and -w/--shush options are frequently implemented in
scripts that use toolbox. To reduce code duplication and to make all
scripts follow the same argument naming conventions, this commit makes
-v/--verbose and -w/--shush standard arguments of the opt module.
"Print this text" \
opt_print_help
+ opt_add_arg "v" "verbose" "no" 0 \
+ "Be more verbose" \
+ log_increase_verbosity
+ opt_add_arg "w" "shush" "no" 0 \
+ "Be less verbose" \
+ log_decrease_verbosity
+
return 0
}