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
With the current option parser, it's impossible to bundle multiple options (i.e. -vh although this is pointless) and options with their arguments (i.e. -f-, -gpath). Bundling saves me time because I can omit extra characters from throwaway one-liners.
Using getopt(3) makes this possible, but that may have portability issues.
The text was updated successfully, but these errors were encountered:
With this change, we can write "trurl curl.se -g{host}", without having
a space after "-g". This goes for all short options.
-v and -h are still treated specially because they cannot be combined
with other options
Proposed-by: @mrnoname1000Fixes#274
With this change, we can write "trurl curl.se -g{host}", without having
a space after "-g". This goes for all short options.
-v and -h are still treated specially because they cannot be combined
with other options
Proposed-by: @mrnoname1000Fixes#274
With the current option parser, it's impossible to bundle multiple options (i.e.
-vh
although this is pointless) and options with their arguments (i.e.-f-
,-gpath
). Bundling saves me time because I can omit extra characters from throwaway one-liners.Using getopt(3) makes this possible, but that may have portability issues.
The text was updated successfully, but these errors were encountered: