2014-08-25 12:54:27 +02:00
|
|
|
#!/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
|
|
|
|
|
|
2015-04-08 10:50:15 +02:00
|
|
|
#parse-skim.sh | compare.py .indx
|
|
|
|
|
|
|
|
|
|
parse-plfr.sh | compare.py .indx
|