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
Currently, the -- (double hyphen) token is the hardcoded end-of-options delimiter. When this token is encountered the remaining command line arguments are treated as positional parameters.
This ticket is to make the end-of-options delimiter configurable. This allows:
a different string as the end-of-options delimiter
treating -- as a normal token, so applications can have an option named ”--“ or capture this token in a positional parameter
The text was updated successfully, but these errors were encountered:
Related to #358.
Currently, the
--
(double hyphen) token is the hardcoded end-of-options delimiter. When this token is encountered the remaining command line arguments are treated as positional parameters.This ticket is to make the end-of-options delimiter configurable. This allows:
--
as a normal token, so applications can have an option named”--“
or capture this token in a positional parameterThe text was updated successfully, but these errors were encountered: