書式
					<!--#exec cmd="grep Windows /usr/local/apache2/logs/access_log | wc -l" -->
					
			
				
説明
				Windows 95/98/Me/NT/2000/XP/2003でアクセスした数を表示させるにはgrepを使ってアクセスログからWindowsの文字を抽出します。wc -lで行数をカウントすればアクセスされた数が表示されます。
				
			
					
					
					<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
			<html>
			<head>
			<meta http-equiv="content-type" content="text/html;charset=shift_jis">
			<title>Windowsでアクセスした数を表示</title>
			</head>
			<body>
			Windowsでアクセスした数<br>
			<pre>
			<!--#exec cmd="grep Windows /usr/local/apache2/logs/access_log | wc -l" -->
			</pre>
			</body>
			</html>