You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The standard --help option should output brief documentation for how to invoke the program, on standard output, then exit successfully. Other options and arguments should be ignored once this is seen, and the program should not perform its normal function.
https://www.gnu.org/prep/standards/html_node/_002d_002dhelp.html#g_t_002d_002dhelp
The following command should
exit(0)
and print usage tostdout
:The following invalid commands should
exit(1)
and print usage tostderr
:Reason:
--hello
is an invalid optionReason: The command requires at least one file
The text was updated successfully, but these errors were encountered: