bumblebee-status/testjson.sh
2019-03-30 23:40:50 +07:00

5 lines
163 B
Bash
Executable file

#!/bin/sh
find themes/ -name "*.json"|grep -v invalid|
while read f; do
cat "$f" | json_verify 2>&1 > /dev/null | sed "1 s@\(.*error\)@\nError in $f\n\1@g"
done