mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 04:59:31 -06:00
14 lines
252 B
Bash
14 lines
252 B
Bash
#!/bin/sh
|
|
|
|
FILES="darcs.txt transfer-reference.txt transfer-tutorial.txt \
|
|
transfer.txt"
|
|
|
|
for f in $FILES; do
|
|
h=`basename "$f" ".txt"`.html
|
|
if [ "$f" -nt "$h" ]; then
|
|
txt2tags $f
|
|
else
|
|
echo "$h is newer than $f, skipping"
|
|
fi
|
|
done
|