home *** CD-ROM | disk | FTP | other *** search
/ The HTML Web Publisher's Construction Kit / HTMLWPCK.ISO / unix / cgi / 15_7.sh < prev    next >
Encoding:
Linux/UNIX/POSIX Shell Script  |  1995-07-11  |  245 b   |  19 lines

  1. #! /bin/sh
  2.  
  3. #This will add the machine name and browser 
  4.  
  5. #name of a client to a database
  6.  
  7. LOGPATH="../logs/browser.dat"
  8.  
  9. echo $REMOTE_HOST $HTTP_USER_AGENT >> $LOGPATH
  10.  
  11. #now send the status to the browser
  12.  
  13. echo Status: 204 No Response
  14.  
  15. echo
  16.  
  17.  
  18.  
  19.