書式
					<!--#exec cmd="grep 'MSIE 4' /usr/local/apache2/logs/access_log | wc -l" -->
					
			
				
説明
				Internet Explorer 4でアクセスした数を表示させるにはgrepを使ってアクセスログからMSIE 4の文字を抽出します。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>Internet Explorer 4でアクセスした数を表示</title>
			</head>
			<body>
			Internet Explorer 4でアクセスした数<br>
			<pre>
			<!--#exec cmd="grep 'MSIE 4' /usr/local/apache2/logs/access_log | wc -l" -->
			</pre>
			</body>
			</html>