diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2019-07-18 22:18:22 -0400 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2019-07-18 22:18:22 -0400 |
commit | 11a1ad03da630da28d39f1fb4a573f855cc7a661 (patch) | |
tree | 2ab29574a1db3c4e709e1e4542113de43f84128d | |
parent | 592f827797f155236859d4e461723ad0b1abe846 (diff) | |
download | cmd2-git-11a1ad03da630da28d39f1fb4a573f855cc7a661.tar.gz |
Corrected line in README since scripting supports more than just ASCII text files
-rwxr-xr-x | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -108,7 +108,7 @@ Instructions for implementing each feature follow. - If you wish to exclude some of your custom commands from the history, append their names to the list at `Cmd.exclude_from_history`. - Do `help history` in any `cmd2` application for more information -- Simple scripting using ASCII text files with one command + arguments per line +- Simple scripting using text files with one command + arguments per line - See the [Command Scripts](https://cmd2.readthedocs.io/en/latest/features/scripting.html#command-scripts) section of the `cmd2` docs for more info - See [script.txt](https://github.com/python-cmd2/cmd2/blob/master/examples/scripts/script.txt) for a trivial example script that can be used in any `cmd2` application with the `run_script` command (or `@` shortcut) |