mirror of
https://github.com/MISP/misp-galaxy.git
synced 2024-11-26 00:37:18 +00:00
14 lines
178 B
Bash
14 lines
178 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
set -x
|
||
|
|
||
|
# Seeds sponge, from moreutils
|
||
|
|
||
|
for dir in galaxies/*.json
|
||
|
do
|
||
|
cat ${dir} | jq . | sponge ${dir}
|
||
|
done
|
||
|
|
||
|
cat schema.json | jq . | sponge schema.json
|