Learn R Programming

bsub (version 1.1.0)

bjobs_running: Running jobs

Description

Running jobs

Usage

bjobs_running(max = Inf, filter = NULL)

Value

The same output format as bjobs.

Arguments

max

Maximal number of jobs.

filter

Regular expression to filter on job names.

Details

You can directly type bjobs_running without parentheses which runs bjobs_running with defaults.

Examples

Run this code
if (FALSE) {
bjobs_running  # this is the same as `bjobs_running()`
bjobs_running() # all running jobs
bjobs_running(max = 50) # last 50 running jobs
bjobs_running(filter = "example") # running jobs with name ".*example.*"
}

Run the code above in your browser using DataLab