19 lines
477 B
Bash
Executable File
19 lines
477 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Builds a corpus from all small json files in the source directory.
|
|
# The files are renamed to the sha1 of their content, and suffixed
|
|
# .json. The files are zipped into a flat file named corpus.zip
|
|
|
|
set -eu
|
|
|
|
tmp=$(mktemp -d)
|
|
|
|
root=$(readlink -f "$(dirname "$0")/..")
|
|
|
|
find $root -type f -size -4k -name "*.json" | while read -r json; do
|
|
cp "$json" "$tmp"/$(sha1sum < "$json" |cut -f1 -d' ').json
|
|
done
|
|
|
|
zip --quiet --junk-paths -r corpus.zip "$tmp"
|
|
rm -rf "$tmp"
|