> I hammered out a search script and a tutorial for monitoring the traffic. > > http://frontiertech.ca/tutorial_web_page_monitor.php > > Feedback is welcome
Pretty nifty! I'll just point out that you can use more advanced crontab entries, rather than the multiple lines you provide as an example. So this: 0 * * * * ./HTTPparse.exe 15 * * * * ./HTTPparse.exe 30 * * * * ./HTTPparse.exe 45 * * * * ./HTTPparse.exe 59 23 * * * ./HTTPparse.exe can become this: 0,15,30,45 * * * * ./HTTPparse.exe 59 23 * * * ./HTTPparse.exe ...or this: 0-59/15 * * * * ./HTTPparse.exe 59 23 * * * ./HTTPparse.exe ...or even: */15 * * * * ./HTTPparse.exe 59 23 * * * ./HTTPparse.exe Charles Steinkuehler http://lrp.steinkuehler.net http://c0wz.steinkuehler.net (lrp.c0wz.com mirror) ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf ------------------------------------------------------------------------ leaf-user mailing list: [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/leaf-user SR FAQ: http://leaf-project.org/pub/doc/docmanager/docid_1891.html
