1#!/bin/sh
2
3# Assume call with pwd = 'htdocs'.
4
5for i in `ls raw/*.exp`
6do
7	echo $i '-->' `basename $i .exp`.html
8	../tools/expand -rules ../tools/rules/memchan $i > `basename $i .exp`.html
9done
10
11rm index.php
12ln -s index.html index.php
13