This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
tech:unix:crontab [2020/07/03 13:52] – travis | tech:unix:crontab [2020/07/30 00:06] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Crontab ====== | ====== Crontab ====== | ||
- | {{howhard> | + | {{howhard> |
- | On macOS, you can install a crontab for your local user by running the following (using the nano editor) | + | ===== Install Crontab ===== |
+ | |||
+ | On macOS (and this should work on any other *NIX), you can install a crontab for your local user by running the following (using the nano editor) | ||
< | < | ||
Line 21: | Line 23: | ||
Press CTRL+O and CTRL+X to save and exit. | Press CTRL+O and CTRL+X to save and exit. | ||
+ | |||
+ | ===== Remove Crontab ===== | ||
+ | If you need to remove a single entry, you can edit your crontab with '' | ||
+ | |||
+ | If you want to eliminate the crontab entirely, run the following: | ||
+ | |||
+ | < | ||
+ | crontab -r | ||
+ | </ | ||
+ | |||