I've a bash script that runs a ruby script that fetches my twitter feeds.

## /home/username/twittercron

#!/bin/bash

cd /home/username/twitter
ruby twitter.rb friends

It runs successfully in command line.

/home/username/twittercron

But when I try to run it as a cronjob, it ran but wasn't able to fetch the feeds.

## crontab -e

*/15 * * * * * /home/username/twittercron

The script has been chmod +x. Not sure why it's as such. Any ideas?

link|improve this question

71% accept rate
feedback

6 Answers

up vote 10 down vote accepted

Ruby Version Manager (rvm) was causing the problem. I had to call the script in cron like this.

*/15 * * * * bash -c 'source /home/username/.rvm/scripts/rvm && /usr/bin/env ruby /home/username/twitter/twitter.rb friends'
link|improve this answer
I've been trying to solve this problem for about a week now. Thank you so much for this! – Eric Koslow May 11 '10 at 15:38
You're most welcomed. – JasonOng Jun 2 '10 at 7:48
you may source your entire bashrc instead, assuming it sources rvm. source $HOME/.bashrc && … – kch Jul 28 '10 at 19:22
You saved my life :-) – allesklar Aug 25 '11 at 6:35
feedback

I think that it could be done simpler by loading bash all environment -l parameter:

*/15 * * * * * /bin/bash -l -c '/home/username/twittercron'

Here is an article about this.

link|improve this answer
feedback

I've had good experience using http://github.com/javan/whenever

It uses a Ruby DSL to manage cron tasks and it handles setting all the environment magic.

every 3.hours do
  runner "MyModel.some_process"
  rake "my:rake:task"
  command "/usr/bin/my_great_command"
end
link|improve this answer
feedback

You need to supply the absolute path to the executing command (or via env).

*/15 * * * * * /usr/bin/env sh /home/username/twittercron

Alternatively:

*/15 * * * * * /usr/bin/env ruby /home/username/twitter/twitter.rb friends
link|improve this answer
1  
that's a bash script he is running. – ghostdog74 Mar 8 '10 at 1:05
I've tried your alternative suggestion. It's still no good... – JasonOng Mar 8 '10 at 2:08
What are you expecting as a result? Does it write out to a file or database? Or are you just waiting for the crontab's stdout to be system mailed to you? – bojo Mar 8 '10 at 2:25
feedback

You have one too many *s in your crontab.

link|improve this answer
Sorry it was a typo. I've got correct no. of *'s. – JasonOng Mar 8 '10 at 2:07
feedback

check your mail and see if there's any error messages. Put some debugging in your bash script, eg echo done>debug.log at the last line and see if debug.log is created. remove the ## /home/username/twittercron in your script and put #!/bin/bash on the first line.

*/15 * * * * * /bin/bash /home/username/twittercron
link|improve this answer
Instead of debug.log, try: MAILTO=your@email.addy (inside the crontab), then running /bin/bash -x /home/username/twittercron as the cron command. That will email the full trace at the end. – Chris Jester-Young Mar 8 '10 at 1:10
My /var/log/syslog & /var/log/cron.log shows that the command ran but no error thrown. – JasonOng Mar 8 '10 at 2:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.