comparison cmd2.py @ 13:c6e8b645c0ab

tweaking docs
author catherine@localhost
date Thu, 15 May 2008 13:13:31 -0400
parents b636cb715925
children a242603905d9
comparison
equal deleted inserted replaced
12:b636cb715925 13:c6e8b645c0ab
7 Load commands from file, save to file, edit commands in file 7 Load commands from file, save to file, edit commands in file
8 Multi-line commands 8 Multi-line commands
9 Case-insensitive commands 9 Case-insensitive commands
10 Special-character shortcut commands (beyond cmd's "@" and "!") 10 Special-character shortcut commands (beyond cmd's "@" and "!")
11 Settable environment parameters 11 Settable environment parameters
12 Parsing commands with flags 12 Parsing commands with `optparse` options (flags)
13 Redirection to file with >, >>; input from file with < 13 Redirection to file with >, >>; input from file with <
14
15 CHANGES:
16 As of 0.3.0, options should be specified as optparse options. See README.txt.
17 flagReader.py options are still supported for backward compatibility
14 """ 18 """
15 19
16 """ 20 """
17 todo: 21 todo:
18 edited commands end with "EOF". Hmm. 22 edited commands end with "EOF". Hmm.