Closed dakyskye closed 4 years ago
Go’s flag package does not allow flags to be combined, so, for example program -ab is not the same as program -a -b, and it will throw an error that flag is not defined. So, let’s make this possible.
program -ab
program -a -b
Go’s flag package does not allow flags to be combined, so, for example
program -ab
is not the same asprogram -a -b
, and it will throw an error that flag is not defined. So, let’s make this possible.