job_log {bsub} | R Documentation |
Log for the running/finished/failed job
Description
Log for the running/finished/failed job
Usage
job_log(job_id, print = TRUE, n_line = 10)
Arguments
job_id |
The job id. It can be a single job or a vector of job ids. |
print |
Whether print the log message. |
n_line |
Number of last lines for each job to show when multiple jobs are queried. |
Value
The log message as a vector.
Examples
## Not run:
# a single job
job_id = 1234567 # job ids can be get from `bjobs`
job_log(job_id)
# multiple jobs
job_id = c(10000000, 10000001, 10000002)
job_log(job_id) # by default last 10 lines for each job are printed
job_log(job_id, n_line = 20) # print last 20 lines for each job
# logs for all running jobs
job_log()
## End(Not run)
[Package bsub version 1.1.0 Index]