Revert "Update 'data/dns/ripnet.dn42'"

This reverts commit 2605a12260.
This commit is contained in:
Chiaki Nanami 2018-02-25 13:36:09 -05:00
parent 2605a12260
commit 569c0be16b
6862 changed files with 52457 additions and 0 deletions

12
fmt-my-stuff Executable file
View file

@ -0,0 +1,12 @@
#!/bin/sh
if [ "$#" -eq "0" ]
then
echo "Usage: $0 YOUR-MNT"
exit
fi
BASE="$(readlink -f "$0" 2>/dev/null || python -c 'import os,sys;print(os.path.realpath(sys.argv[1]))' "$0")"
BASE="$(dirname "$BASE")"
grep -lr $1 $BASE/data/ | while read line; do utils/schema-check/dn42-schema.py fmt -i $line; done