Hi Hon!
I use a different variation of invoking cron. YOu are correct in that you need to be at the unix command prompt. From here I would type:
crontab -e
This should open up your specified cron file for this user to edit with the vi editor (vi is a standard unix editor). The layout for entering entries can be seen in the man pages, but generally it goes like this:
minute hour monthday month weekday command
for example to run 'test.sh' at 7:30 am on Sunday ...
30 07 * * 0 $WHATEVER_LOCATION/test.sh
asterisks indicate that it occurs all the time in that entry (in this case, every month day, and every month.)
Just be sure when scheduling that the person invoking the script has the correct permissions on the script. And also be sure to export any variables that the script might need. (for example, I have Oracle scripts that run sql based reports, in order to invoke sqlplus, I have to source its run location, database name, etc or else you will get errors).
Hope this helps!
