elcc / util /jsonl2json.sh
bboldt's picture
Initial public commit
a5f760c
raw
history blame
117 Bytes
#!/usr/bin/env bash
for x in **/corpus.jsonl; do
cat $x | jq -sc > $(dirname $x)/$(basename $x .jsonl).json;
done