Args returns the command line arguments associated with the command.
()
| 621 | // Args returns the command line arguments associated with the |
| 622 | // command. |
| 623 | func (cmd *Command) Args() Args { |
| 624 | return cmd.parsedArgs |
| 625 | } |
| 626 | |
| 627 | // NArg returns the number of the command line arguments. |
| 628 | func (cmd *Command) NArg() int { |
no outgoing calls