job_log | R Documentation |
Obtain Job log
job_log(job_id, print = TRUE, n_line = 10)
job_id |
The job id. It can be a single job or a vector of job ids. |
print |
Whether to print the log message to the terminal. |
n_line |
Number of last lines for each job to show when multiple jobs are queried. |
The log messages as a vector.
## 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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.