This repository has been archived on 2024-06-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
thesis-src/Implementation/testdata/make_json_stubs.sh
T
2024-01-08 16:23:24 +01:00

5 lines
190 B
Bash

#!/bin/sh
# useful for tagging: https://www.htmlstrip.com/string-text-to-json-list-to-json-converter
for i in *.png; do echo "{\n \"words\": [\n \"\"\n ]\n}" > "${i/.png/.json}"; done