HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

scrontab — Manage Slurm crontab files. More information: <https://slurm.schedmd.com/scrontab.html>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandcrontabfilesslurmscrontabclimanagemore
linux

Problem

How to use the scrontab command: Manage Slurm crontab files. More information: <https://slurm.schedmd.com/scrontab.html>.

Solution

scrontab — Manage Slurm crontab files. More information: <https://slurm.schedmd.com/scrontab.html>.

Install a new crontab from the specified file:
scrontab {{path/to/file}}


[e]dit the crontab of the current user:
scrontab -e


[e]dit the crontab of the specified user:
scrontab --user={{user_id}} -e


[r]emove the current crontab:
scrontab -r


Print the crontab of the current user to stdout:
scrontab -l

Code Snippets

Install a new crontab from the specified file

scrontab {{path/to/file}}

[e]dit the crontab of the current user

scrontab -e

[e]dit the crontab of the specified user

scrontab --user={{user_id}} -e

[r]emove the current crontab

scrontab -r

Print the crontab of the current user to `stdout`

scrontab -l

Context

tldr-pages: linux/scrontab

Revisions (0)

No revisions yet.