From 10ccee584417d51afc583484b692a8d7086a0d5f Mon Sep 17 00:00:00 2001 From: Terry Truong Date: Mon, 28 Mar 2022 12:23:26 +1100 Subject: Split lib.ts into layout.ts and util.ts --- src/genTestImgs.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/genTestImgs.sh') diff --git a/src/genTestImgs.sh b/src/genTestImgs.sh index 1198a60..21b001b 100755 --- a/src/genTestImgs.sh +++ b/src/genTestImgs.sh @@ -2,10 +2,10 @@ set -e #generate tol.json from tol.txt -cat tol.txt | ./txtTreeToJSON.py > tol.json +cat tolData.txt | ./txtTreeToJSON.py > tolData.json -#reads through tol.json, gets names, and generates image for each name -cat tol.json | \ +#reads through tolData.json, gets names, and generates image for each name +cat tolData.json | \ gawk 'match ($0, /"name"\s*:\s*"([^"]*)"/, arr) {print arr[1]}' | \ while read; do convert -size 200x200 xc:khaki +repage \ -- cgit v1.2.3