#!/bin/sh

export list=encoding.lis

if [ -f $list ]
then
	rm $list
fi

for i in tables/*
do
	echo>>$list -n "`basename $i`: "  
	head>>$list -1 $i
done
