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
unused options sometimes are either ignored as options or put as leftover args. Example: ./program -X would treat -X as a leftover arg if the X option has not been added, similarly, ./program -X -v would ignore -X if v was added but X was not. Users should be notified about invalid options, ideally by failing the program and printing the help message.
The text was updated successfully, but these errors were encountered:
unused options sometimes are either ignored as options or put as leftover args. Example:
./program -X
would treat-X
as a leftover arg if theX
option has not been added, similarly,./program -X -v
would ignore-X
ifv
was added butX
was not. Users should be notified about invalid options, ideally by failing the program and printing the help message.The text was updated successfully, but these errors were encountered: