the_beguiler_module/json_to_nedb.sh

6 lines
79 B
Bash
Raw Permalink Normal View History

2023-06-10 19:21:42 +02:00
#!/bin/sh
for x in packs/*.json; do
cat "$x" | jq -c > "${x%.json}.db"
done