https://github.com/xe/scron
Simple cron daemon
https://github.com/xe/scron
Last synced: 9 months ago
JSON representation
Simple cron daemon
- Host: GitHub
- URL: https://github.com/xe/scron
- Owner: Xe
- License: mit
- Created: 2014-11-03T22:45:37.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-11-03T22:46:21.000Z (over 11 years ago)
- Last Synced: 2025-08-31T17:03:45.926Z (10 months ago)
- Language: C
- Homepage:
- Size: 195 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: LICENSE
Awesome Lists containing this project
README
scron
=====
about
-----
simple cron daemon, originally forked from
https://github.com/defer-/scron.git
features
--------
schedule tasks
single daemon and config
log job output: command &>> /var/log/cron.log
run as different user: su -c 'command' user
log to stdout and syslog
no mail support
config
------
syntax:
value: * (wildcard), 30 (number), */N (repeat), or 1-5 (range)
separator: \t (tab)
example:
# tm_min tm_hour tm_mday tm_mon tm_wday command
# 6:00 every day
0 6 * * * updatedb
# 5:30 every weekday
30 5 * * 1-5 rsync -r --quiet /var/www backup@192.168.0.8:~