This is useful so we aren't wasting cycles generating examples that don't need to be generated and we just cut to the chase Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
26 lines
791 B
Bash
Executable File
26 lines
791 B
Bash
Executable File
#!/bin/bash
|
|
set -eo pipefail
|
|
here="$(dirname "$(realpath "$0")")"
|
|
|
|
hashes=(md5 sha1 sha224 sha256 sha384 sha512)
|
|
matrices=(nibble randomart)
|
|
|
|
cd "$here/.."
|
|
|
|
find "examples" -type f -name '*.in' | \
|
|
while read infile; do
|
|
for hash in "${hashes[@]}"; do
|
|
for matrix in "${matrices[@]}"; do
|
|
svgfile="examples/$(basename -s .in "$infile")-$hash-$matrix.svg"
|
|
pngfile="examples/$(basename -s .in "$infile")-$hash-$matrix.png"
|
|
echo "Generating $svgfile"
|
|
python3 -m colorhash "$infile" --output-type svg --out "$svgfile" --hash "$hash" --matrix "$matrix"
|
|
echo "Generating $pngfile"
|
|
convert "$svgfile" "$pngfile"
|
|
done
|
|
done
|
|
done
|
|
|
|
# Additionally, create an SVG for the current commit hash
|
|
tools/gencommit.sh
|