| Line 261... |
Line 261... |
| 261 |
def main():
|
261 |
def main():
|
| 262 |
|
262 |
|
| 263 |
### Get the program options
|
263 |
### Get the program options
|
| 264 |
parser = OptionParser()
|
264 |
parser = OptionParser()
|
| 265 |
parser.add_option('-q', '--quiet', action='store_true', dest='quiet',
|
265 |
parser.add_option('-q', '--quiet', action='store_true', dest='quiet',
|
| 266 |
default=True, help="Don't print status messages to stdout")
|
266 |
default=False, help="Don't print status messages to stdout")
|
| 267 |
parser.add_option('-d', '--dict', dest='dict_file', default=DICT_FILE,
|
267 |
parser.add_option('-d', '--dict', dest='dict_file', default=DICT_FILE,
|
| 268 |
help='Read dictionary from FILE', metavar='FILE')
|
268 |
help='Read dictionary from FILE', metavar='FILE')
|
| 269 |
parser.add_option('-n', '--not-recursive', action='store_false', dest='recursive',
|
269 |
parser.add_option('-n', '--not-recursive', action='store_false', dest='recursive',
|
| 270 |
default=True, help='don\'t run recursively')
|
270 |
default=True, help='don\'t run recursively')
|
| 271 |
parser.add_option('-s', '--start-dir', dest='start_dir', default=WORK_DIR,
|
271 |
parser.add_option('-s', '--start-dir', dest='start_dir', default=WORK_DIR,
|