misp-galaxy/jq_all_the_things.sh

14 lines
178 B
Bash
Raw Normal View History

2017-02-13 18:32:53 +01:00
#!/bin/bash
set -e
set -x
# Seeds sponge, from moreutils
2017-02-13 18:52:54 +01:00
for dir in clusters/*.json
2017-02-13 18:32:53 +01:00
do
cat ${dir} | jq . | sponge ${dir}
done
cat schema.json | jq . | sponge schema.json