the_beguiler_module/json_to_nedb.sh
2023-06-10 19:23:28 +02:00

6 lines
79 B
Bash
Executable file

#!/bin/sh
for x in packs/*.json; do
cat "$x" | jq -c > "${x%.json}.db"
done