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
(This affects only the programming side, not the user experience.)
The current programming interface does what it should do. But there are easier and more obvious alternatives. When adding more command line options one might consider to switch to Apache Commons CLI (https://commons.apache.org/proper/commons-cli/). In my experience, programming a CLI is easier do to with it.
But using Apache Commons CLI would break the user interface because it allows only short options to start with one hyphen ("-a") but loner options have to use two hyphen ("--timeout"). But this style is adopted widely in the Linux world.
The text was updated successfully, but these errors were encountered:
(This affects only the programming side, not the user experience.)
The current programming interface does what it should do. But there are easier and more obvious alternatives. When adding more command line options one might consider to switch to Apache Commons CLI (https://commons.apache.org/proper/commons-cli/). In my experience, programming a CLI is easier do to with it.
But using Apache Commons CLI would break the user interface because it allows only short options to start with one hyphen ("-a") but loner options have to use two hyphen ("--timeout"). But this style is adopted widely in the Linux world.
The text was updated successfully, but these errors were encountered: