Crontab

How can i schedule a batch job/script to run every minute every day? Thanks

Have a look at the manual page (man -S5 crontab) or one of the many flavours of manpages that are available on unix.com
Man Page for crontab (FreeBSD Section 5) - The UNIX and Linux Forums

Throwing my two bits in: if you're running something each minute, you might be better off writing a daemon (long running process) rather than a single task that depends on being invoked quite frequently.

use this....

          • /home/script.name (use the absolute path for the script)

use crontab -e command to edit the crontab, and write upper code and save the cron file... :smiley:

Thank you