summaryrefslogtreecommitdiff
path: root/copy_to_html.sh
blob: fa4eca27456cffc45487eeb6efe57892ae398644 (plain)
1
2
3
4
5
6
7
8
#!/bin/sh

for F in $(ls); do
FILE=$(basename $F|sed s/.txt/.html/)
echo $FILE
$HOMe/www/sh/formatter.sh $F >| "$HOME/www/source/$FILE"
done