blob: 48362743b63f0061edbda2763b95ca991b502f3d [file] [log] [blame]
#!/bin/sh
for i in ./*.xml; do
echo -n "Processing $i... "
python ./gen_sort_tags.py $i > $i.tmp
mv $i.tmp $i
echo "done."
done