1
mirror of https://git.dn42.dev/dn42/registry.git synced 2024-09-17 01:11:26 +02:00
registry/fmt-my-stuff

13 lines
231 B
Plaintext
Raw Normal View History

2017-12-05 20:38:28 +01:00
#!/bin/sh
if [ "$#" -eq "0" ]
then
echo "Usage: $0 YOUR-MNT"
exit
fi
BASE="$(realpath "$0")"
BASE="$(dirname "$BASE")"
grep -lr $1 $BASE/data/ | while read line; do utils/schema-check/dn42-schema.py fmt -i $line; done