#!/bin/sh

export list="../encoding.lis"

cd cedf

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

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

