1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 18:24:56 +02:00
tldr/pages/common/crontab.md
2016-02-16 16:55:23 -05:00

15 lines
270 B
Markdown

# crontab
> Schedule cron jobs to run on a time interval for the current user.
- Edit the crontab file for the current user:
`crontab -e`
- View a list of existing cron jobs for current user:
`crontab -l`
- Remove all cron jobs for the current user:
`crontab -r`