On Jan 11, 2008, at 2:47 PM, jackster the jackle wrote: > Since CRON only goes down to one minute intervals and I'd rather not > change my code to loop so that I can poll every 15 seconds, is there a > way to run a ruby file from the command line and tell it to run the > file > 4 times? You mean something like this? $ for x in 1 2 3 4; do echo $x; done 1 2 3 4 -- fxn