You are not logged in.
Pages: 1
Hi,
I would like to run a cron job every minute.
I can find cron.hourly, cron.daily, cron.weekly, cron.monthly in my /etc, but no cron.minutly.
Can I get it? What should I do?
Thanks!
Nathan
Offline
hi lonelystar.
crontab -e
*/1 * * * * echo "job every minute"should do what you want!
Offline
run
crontab -e. this opens an editor. therein you type :
#min hour day month weekday command
*/1 * * * * <your command>dw was faster ![]()
Last edited by DonVla (2008-11-17 16:56:42)
Offline
Works, thanks!
Offline
Pages: 1