how to make run cron on OSX 10.6.2?
--------------------------------------------------
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: Music Box Puzzles
--
Chapters
00:00 How To Make Run Cron On Osx 10.6.2?
00:58 Answer 1 Score 10
01:22 Answer 2 Score 9
01:42 Accepted Answer Score 8
01:59 Answer 4 Score 3
02:30 Answer 5 Score 3
02:51 Thank you
--
Full question
https://superuser.com/questions/243893/h...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#macos #cron
#avk47
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: Music Box Puzzles
--
Chapters
00:00 How To Make Run Cron On Osx 10.6.2?
00:58 Answer 1 Score 10
01:22 Answer 2 Score 9
01:42 Accepted Answer Score 8
01:59 Answer 4 Score 3
02:30 Answer 5 Score 3
02:51 Thank you
--
Full question
https://superuser.com/questions/243893/h...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#macos #cron
#avk47
ANSWER 1
Score 10
The cron utility is launched by launchd when it sees the existence of /etc/crontab
or files in /usr/lib/cron/tabs
. There should be no need to start it manually. (See the man pages.)
To see logs of OS X, you can use Console Utility.
ANSWER 2
Score 9
Two other ways are to use:
*/1 * * * * echo 'test' > /Users/radek/Backup/rationalvmware/test.txt
or
* * * * * echo 'test' > /Users/radek/Backup/rationalvmware/test.txt
These both run every minute.
ACCEPTED ANSWER
Score 8
I doubt you waited until 1 minute past the hour for your test. To run every minute:
0-59 * * * * echo 'test' > /Users/radek/Backup/rationalvmware/test.txt
ANSWER 4
Score 3
First, you need to set your $EDITOR
variable to something reasonable, since what you did set it to something you don't want. Set it like this:
EDITOR=joe
You can change joe
to another text editor, such as nano
or vim
.
Then, you'll want to edit your crontab
, which is done like so:
crontab -e
Then you'll put in the text for cron
to use.