| |
---|
| | PROGNAME = "tren.py" |
---|
| | BASENAME = PROGNAME.split(".py")[0] |
---|
| | PROGENV = BASENAME.upper() |
---|
| | INCLENV = PROGENV + "INCL" |
---|
| | RCSID = "$Id: tren.py,v 1.226 2010/08/25 18:54:38 tundra Exp $" |
---|
| | RCSID = "$Id: tren.py,v 1.227 2010/08/25 19:26:25 tundra Exp $" |
---|
| | VERSION = RCSID.split()[2] |
---|
| | |
---|
| | # Copyright Information |
---|
| | |
---|
| |
---|
| | # 1) Prepending any options specified in the environment variable. |
---|
| | # |
---|
| | # 2) Resolving any include file references |
---|
| | # |
---|
| | # 3) Separating the command line into [options ... filenames ..] |
---|
| | # groupings so that user can interweave multiple options |
---|
| | # and names on the command line. |
---|
| | # |
---|
| | # 4) Building the data structures that depend on the file/dir names |
---|
| | # 3) Building the data structures that depend on the file/dir names |
---|
| | # specified for renaming. We have to do this first, because |
---|
| | # -r renaming operations specified on the command line will |
---|
| | # need this information if they make use of renaming tokens. |
---|
| | # |
---|
| |
---|
| | |