nnnotes/parse/compare.sh
2015-04-08 10:50:15 +02:00

19 lines
256 B
Bash
Executable File

#!/bin/bash
INDXFILE='.indx'
for i in *.mmd; do
f=$i
done
if [[ ! -f $INDXFILE ]]; then
make --quiet index
elif [[ $f -nt $INDXFILE ]]; then
rm $INDXFILE
make --quiet index
fi
#parse-skim.sh | compare.py .indx
parse-plfr.sh | compare.py .indx