diff options
Diffstat (limited to 'preseason/check-all.sh')
-rwxr-xr-x | preseason/check-all.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/preseason/check-all.sh b/preseason/check-all.sh new file mode 100755 index 0000000..3847cff --- /dev/null +++ b/preseason/check-all.sh @@ -0,0 +1,6 @@ +#!/bin/bash +find config -name *.json | + while read JSON + do + python3 checks.py ${JSON} + done |