@@ -32,7 +32,7 @@ Main Features
3232- Special-character command shortcuts (beyond cmd's ` ? ` and ` ! ` )
3333- Command aliasing similar to bash ` alias ` command
3434- Macros, which are similar to aliases, but they can contain argument placeholders
35- - Ability to load commands at startup from an initialization script
35+ - Ability to run commands at startup from an initialization script
3636- Settable environment parameters
3737- Parsing commands with arguments using ` argparse ` , including support for sub-commands
3838- Unicode character support
@@ -109,12 +109,12 @@ Instructions for implementing each feature follow.
109109- Simple scripting using ASCII text files with one command + arguments per line
110110 - See the [Script files](https:// cmd2.readthedocs.io/ en/ latest/ freefeatures.html# script-files) section of the `cmd2` docs for more info
111111 - See [script.txt](https:// github.com/ python- cmd2/ cmd2/ blob/ master/ examples/ scripts/ script.txt) for a trivial example script that can be
112- used in any `cmd2` application with the `load ` command (or `@ ` shortcut)
112+ used in any `cmd2` application with the `run_script ` command (or `@ ` shortcut)
113113
114114- Powerful and flexible built- in Python scripting of your application using the `run_pyscript` command
115115 - Run arbitrary Python scripts within your `cmd2` application with the ability to also call custom `cmd2` commands
116116 - No separate API for your end users to learn
117- - Syntax for calling `cmd2` commands in a `pyscript ` is essentially identical to what they would enter on the command line
117+ - Syntax for calling `cmd2` commands in a `run_pyscript ` is essentially identical to what they would enter on the command line
118118 - See the [Python](https:// cmd2.readthedocs.io/ en/ latest/ freefeatures.html# python) section of the `cmd2` docs for more info
119119 - Also see the [python_scripting.py](https:// github.com/ python- cmd2/ cmd2/ blob/ master/ examples/ python_scripting.py)
120120 example in conjunction with the [conditional.py](https:// github.com/ python- cmd2/ cmd2/ blob/ master/ examples/ scripts/ conditional.py) script
0 commit comments