1
0
Fork 0
mirror of https://github.com/geometer/FBReaderJ.git synced 2025-10-04 02:09:35 +02:00
FBReaderJ/scripts/resources/update.sh
2012-04-12 14:57:29 +02:00

15 lines
259 B
Bash
Executable file

#!/bin/sh
if [ "$1" == "" ]; then
part=application
else
part=$1
fi
for file in ../../assets/resources/$part/*.xml; do
xsltproc clean.xslt $file > `basename $file`;
done
for file in *.xml; do
diff $file en.xml > `basename $file .xml`.diff;
done
rm *.xml