cannot specify multiple output formats in format parameter
an alternative is to specify -f <format> multiple times in args, but this creates a weird redundant structure where formats are being specified in two separate arguments
with:
format: JSON
args: >
-f HTML
at this point I'd suggest just getting rid of format argument altogether and let people specify it in args directly
For that matter, why not just have an args argument and get rid of the rest? It's just a wrapper to the cli that people can then call directly?
cannot specify multiple output formats in
format
parameteran alternative is to specify
-f <format>
multiple times inargs
, but this creates a weird redundant structure where formats are being specified in two separate argumentsat this point I'd suggest just getting rid of
format
argument altogether and let people specify it inargs
directlyFor that matter, why not just have an
args
argument and get rid of the rest? It's just a wrapper to the cli that people can then call directly?