Open
Description
From the docs:
Commands can also have subcommands, which are added with addSubcommand. A command with subcommands can't run its own code, so run doesn't need to be implemented.
Consider an example:
$ ip route
<prints routes>
$ ip route add ...
<adds a route>
$ ip route del ...
<removes a route>
So I cannot implement a similar CLI with the args
package?