1
mirror of https://git.dn42.dev/dn42/registry.git synced 2024-09-05 22:38:56 +02:00
registry/fmt-my-stuff
2018-01-01 02:53:36 +01:00

13 lines
317 B
Bash
Executable File

#!/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