mirror of
https://git.dn42.dev/dn42/registry.git
synced 2025-05-07 05:05:23 +08:00
12 lines
231 B
Bash
Executable file
12 lines
231 B
Bash
Executable file
#!/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
|