bjobs_pending {bsub} | R Documentation |
Pending jobs
Description
Pending jobs
Usage
bjobs_pending(max = Inf, filter = NULL)
Arguments
max |
Maximal number of jobs. |
filter |
Regular expression to filter on job names. |
Details
You can directly type bjobs_pending
without parentheses which runs bjobs_pending
with defaults.
Value
The same output format as bjobs
.
Examples
## Not run:
bjobs_pending # this is the same as `bjobs_pending()`
bjobs_pending() # all pending jobs
bjobs_pending(max = 50) # last 50 pending jobs
bjobs_pending(filter = "example") # pending jobs with name ".*example.*"
## End(Not run)
[Package bsub version 1.1.0 Index]