mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 15:28:06 +02:00
9 lines
153 B
Bash
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.'
|