home *** CD-ROM | disk | FTP | other *** search
- #!/usr/local/bin/perl
- print "content-type: text/html\n\n";
- $num = `grep -c 'GET / HTTP' /usr/local/business/http/accn.com-Server/logs/access_log` ;
- $num += `grep -c 'GET /index.shtml /usr/local/business/http/accn.com-Server/logs/access_log` ;
- $num += `grep -c 'GET /index.html' /usr/local/business/http/accn.com-Server/logs/access_log` ;
- print "$num\n";
-
-