Notepad/enter/Coding Tips (Classical)/Terminal Tips/System Client/Linux/Cron.md

10 lines
366 B
Markdown
Raw Normal View History

2023-07-14 20:02:45 +00:00
Cron is a way to automate tasks through scheduled scripts. There are fantastic resources for crontab such as [Cronitor](https://crontab.guru/) . Cron works for MacOS (via Crontab) by default as well as Linux.
More information on [Cron usage. ](https://www.hostinger.com/tutorials/cron-job)
```
*/30 * * * * /Users/shwethajayaraj/.local/bin >/dev/null 2>&1
```