Shell script to be run every one hour

How can we run shell script every one hour.
Anyone having code unit for this?

Hi,

You can schedule the script on crontab.

00 * * * * <script_name> <command>

Thanks,