Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 457 Bytes

crontab.md

File metadata and controls

26 lines (18 loc) · 457 Bytes

Cron Jobs Cheat Sheet

Commands

# display current user's crontab
crontab -l

# edit current user's crontab
crontab -e

# delete current user's crontab
crontab -r

# display <username>'s crontab
crontab -l -u <username>

# edit <username>'s crontab
crontab -e -u <username>

# delete <username>'s crontab
crontab -r -u <username>

# populate crontab from file contents
crontab -l -u <username> | cat - <filename> | crontab -u <username> -