Cron: Difference between revisions

From XPUB & Lens-Based wiki
No edit summary
Line 8: Line 8:


and edit it to something like
and edit it to something like
  5 * * * * /home/mmurtaugh/xpub.sh > /home/mmurtaugh/xpub.log

Revision as of 12:36, 16 March 2017

The Linux way to schedule commands.

http://www.adminschoice.com/crontab-quick-reference

Setting up a script to run every five minutes

 crontab -e

and edit it to something like

 5 * * * * /home/mmurtaugh/xpub.sh > /home/mmurtaugh/xpub.log