| |
---|
| | import sys |
---|
| | |
---|
| | # Version info |
---|
| | |
---|
| | VERSION = "$Id: tdir,v 1.54 2001/06/24 01:35:50 tundra Exp $" |
---|
| | VERSION = "$Id: tdir,v 1.55 2001/06/24 19:00:24 tundra Exp $" |
---|
| | |
---|
| | |
---|
| | # Booleans |
---|
| | |
---|
| |
---|
| | |
---|
| | def Usage(): |
---|
| | sys.stdout.write("tdir - Copyright (c) 2001, TundraWare Inc., All Rights Reserved. \n\n") |
---|
| | sys.stdout.write(" usage: tdir [-Rdfhtv] [-c #] [-s c] [-w #] [dir...] where,\n\n") |
---|
| | sys.stdout.write(" -R Recur down each named directory tree\n") |
---|
| | sys.stdout.write(" -R Recurse down each named directory tree\n") |
---|
| | sys.stdout.write(" -c # Column width\n") |
---|
| | sys.stdout.write(" -d Do not display directories in output\n") |
---|
| | sys.stdout.write(" -f Do not display files in output\n") |
---|
| | sys.stdout.write(" -h Display this help information\n") |
---|
| |
---|
| | |