Browse Source
changed the default for days older
Made days older a future date by default to be sure that all files are included when it is not specified.
master
Gerry Nelson
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
listfiles.py
|
|
|
@ -32,7 +32,7 @@ parser = argparse.ArgumentParser() |
|
|
|
parser.add_argument("-n","--name", help="Name contains",default=None) |
|
|
|
parser.add_argument("-c","--type", help="Content Type in.",default=None) |
|
|
|
parser.add_argument("-p","--parent", help="ParentURI starts with.",default=None) |
|
|
|
parser.add_argument("-d","--days", help="List files older than this number of days",default='0') |
|
|
|
parser.add_argument("-d","--days", help="List files older than this number of days",default='-1') |
|
|
|
parser.add_argument("-m","--modifiedby", help="Last modified id equals",default=None) |
|
|
|
parser.add_argument("-s","--sortby", help="Sort the output descending by this field",default='modifiedTimeStamp') |
|
|
|
parser.add_argument("-o","--output", help="Output Style", choices=['csv','json','simple'],default='json') |
|
|
|
|