Say you want to run a job every 30 minutes on linux (or osx) using crontab. Sometimes I see the the sytax written like this:
30 * * * * /path/to/job
and sometimes I see it written like
*/30 * * * * /path/to/job
Are those two lines equivalent? (They seem to be based on my tests). Are there any differences?