src/translations/zh_CN.po -text
src/translations/zh_TW.po -text
src/utils/apply-coding-style.sh -text
+src/utils/compare-sql-dumps.sh -text
src/utils/createplugin.sh -text svneol=unset#text/x-sh
src/utils/cvs1/cvscreate.sh svneol=native#text/x-sh
src/utils/cvs1/cvstar_genlist.pl svneol=native#text/x-perl
--- /dev/null
+#! /bin/bash
+
+for i in src/utils utils ../src/utils ../utils ; do
+ if [ -e $i/filter-sql-dump.php ] ; then
+ s=$i/filter-sql-dump.php
+ fi
+done
+if [ "$s" = "" ] ; then
+ echo "Couldn't find filter script..."
+ exit 1
+fi
+
+diff -b -u50 <($s $1) <($s $2)