home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / Tools / glimpsehttp / news / update < prev   
Encoding:
Text File  |  1995-05-16  |  271 b   |  14 lines

  1. #!/bin/sh
  2. #
  3. #location of news directory
  4.  
  5. HTTPD_NEWSHOME=/usr1/paul/news
  6.  
  7. cd $HTTPD_NEWSHOME
  8. echo Updating begins `date` >>upd_log
  9. getnews >>upd_log 2>&1 
  10. build_idx >>upd_log 2>&1 
  11. du >>upd_log 2>&1 
  12. at -s 2am update >>upd_log 2>&1
  13. echo Updating finishes `date` >>upd_log
  14.