user985358
user985358

Reputation:

What's the difference between crontab and cronjob?

This question may sound incredibly stupid, but if I don't ask I'll never know...

All the tasks setting I do is always by using "crontab". I heard the term "cronjob" somewhere. Is it another tool or just a name for something in "crontab"?

Upvotes: 15

Views: 5845

Answers (4)

scai
scai

Reputation: 21469

A cronjob is just a single entry in a crontab, that's all.

Upvotes: 14

mlbx02
mlbx02

Reputation: 49

Try playing in the cron sandbox - lets you try out combinations of crontab timing values and gives you a list of when the job would run. www.dataphyx.com

Upvotes: 0

skidadon
skidadon

Reputation: 547

crontab is the actual command line entry that is used to kick off a cron job (not cronjob).

to create a cron job, do the following

 crontab -e

And then fill in the cron syntax for the scripts/programs you want to run at a specific "cron'ed" interval.

Upvotes: 0

David
David

Reputation: 9945

The cronjob is what you put into your crontab.

Upvotes: 0

Related Questions