diff options
Diffstat (limited to 'cmd2.py')
-rwxr-xr-x | cmd2.py | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -1121,9 +1121,12 @@ class Cmd(cmd.Cmd): Commands may be terminated with: {} Command-line arguments allowed: {} Output redirection and pipes allowed: {} - Settable parameters: {}\n""".format(not self.case_insensitive, str(self.terminators), - self.allow_cli_args, - self.allow_redirection, ' '.join(self.settable))) + Parsing of @options commands: + Use POSIX-style argument parser (vs Windows): {} + Strip Quotes when using Windows-style argument parser: {} + Use a list of arguments instead of a single argument string: {} + \n""".format(not self.case_insensitive, str(self.terminators), self.allow_cli_args, self.allow_redirection, + POSIX_SHLEX, STRIP_QUOTES_FOR_NON_POSIX, USE_ARG_LIST)) def do_help(self, arg): """List available commands with "help" or detailed help with "help cmd".""" |