@@ -159,6 +159,9 @@ You can use it to select a range of job ids, e.g., ``-j 1-4 6-8``.
In this case, please assert that there are no spaces between job ids and the ``-`` separator.
If any job id is specified, which is not available in the database, it will simply be ignored, including job ids that in the ranges.
Since version 1.3.0, GridTK also saves timing information about jobs, i.e., time stamps when jobs were submitted, started and finished.
You can use the ``-t`` option of ``jman ls`` to add the time stamps to the listing, which are both written for jobs and parametric jobs (i.e., when using the ``-a`` option).
list_parser.add_argument('-n','--names',metavar='NAME',nargs='+',help='List only the jobs with the given names (by default, all jobs are listed)')
list_parser.add_argument('-a','--print-array-jobs',action='store_true',help='Also list the array ids.')
list_parser.add_argument('-l','--long',action='store_true',help='Prints additional information about the submitted job.')
list_parser.add_argument('-t','--print-times',action='store_true',help='Prints timing information on when jobs were submited, executed and finished')
list_parser.add_argument('-x','--print-dependencies',action='store_true',help='Print the dependencies of the jobs as well.')
list_parser.add_argument('-o','--ids-only',action='store_true',help='Prints ONLY the job ids (so that they can be parsed by automatic scripts).')
list_parser.add_argument('-s','--status',nargs='+',choices=Status,default=Status,help='Delete only jobs that have the given statuses; by default all jobs are deleted.')