Additions:
{{redirect page="LinuxCron"}}
Deletions:
%%(bash)
# cron.d file
# to activate, link to /etc/cron.d: [sudo] ln -s [path/]fname.cron /etc/cron.d/link_name
# +---------------- minute (0 - 59)
# | +------------- hour (0 - 23)
# | | +---------- day of month (1 - 31)
# | | | +------- month (1 - 12)
# | | | | +---- day of week (0 - 6) (Sunday=0 or 7)
# | | | | |
# M H DM MO DW USER SCRIPT
* * * * * klenwell touch /tmp/klenwell_test_cron
%%
Additions:
%%(bash)