fpc/docs/makehtm
1998-03-25 11:26:49 +00:00

9 lines
153 B
Bash

#!/bin/sh
echo 'starting to convert. '
for f in $*
do
sed s/\\.html/\\.htm/g <$f >`dirname $f`/`basename $f .html`.htm
echo -n '.'
done
echo 'Done.'