first, make the bash script executable:
Code:
chmod u+x name_of_script
to add a new cronjob to the crontable; then
Code:
1 2 3 4 5 /path/to/bash-script
1: Minute (0-59)
2: Hours (0-23)
3: Day (0-31)
4: Month (0-12 [12 == December])
5: Day of the week(0-7 [7 or 0 == sunday])
which lets you set a time for which you want to run it...
google will give you more info on the time-setting syntax for things like running a job every hour etc...
I think this should do it...