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
{{ message }}
This repository was archived by the owner on Apr 6, 2022. It is now read-only.
The general convention for optional args in a (unix-like) CLI is:
-osingle-letter switch for single-dashed options and--option-in-clidashed-separated words for double-dashed optionsThese usually go in pairs, the shorthand and the full spelled option name. For example:
The current notation for
-Wtxtor-exportconflicts with this convention.For
-WtxtI would recommend to have a separate switch specifying thetypeof file. For example-W -t txt; where-tmeanstypeand it can be a choice between["mei", "txt"]or something similar.