An open API service indexing awesome lists of open source software.

https://github.com/fadilxcoder/cron-job

Cron jobs by ssh
https://github.com/fadilxcoder/cron-job

notes poc

Last synced: about 1 year ago
JSON representation

Cron jobs by ssh

Awesome Lists containing this project

README

          

# Notes

- Connect to server by SSH
- Run : `crontab -e` & insert cron
- Run : `crontab -l` - view crontab file
- Run : `crontab -r` - Clear and remove crontab
- Create / validate cron timing setup : https://crontab.guru/
- Explained :
- - `* * * * * /usr/bin/php ////cron/db-populate`
- - `* * * * *` => At every minute.
- - `/usr/bin/php` => `php` command
- - `////cron/db-populate` => Full path to file to be executed