[00:33] Anyone ever played with zeya before? [00:51] Anyone about to test something for me? [02:11] * pleia2 waves to DarkwingDuck [03:54] pleia2: Yeah, Rubik's Cube competition in Berkeley on Sunday. Sorry partimus people. [03:57] doh :) [19:19] has anyone here ever sat up a cron job? whats the best way to do it. It seems there are several but one way might be the best [19:24] The easiest way is to put a script in cron.hourly, daily, weekly etc. [19:24] If you need more control than that, use crontab (man crontab gives you the options). === rbarot__ is now known as rbarot_ [19:25] akk. im just makin a rsync job say all I was gonna run was rsync -azv /home /myusername /path/to/externalharddrive [19:26] its a pretty easy thing, but was unsure if there was a correct way to do it. haha [19:26] When and how often? That's the issue with cron. [19:26] hum. every week was what i was gonna think [19:27] If you don't care exactly when, just make a script and put it in cron.weekly. [19:29] seemes easy enough. #!/bin/sh seemes like the bwst way to go then [19:30] thanks!