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