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

https://github.com/xe/scron

Simple cron daemon
https://github.com/xe/scron

Last synced: 9 months ago
JSON representation

Simple cron daemon

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:~