#TIL that it looks like #tesseract is preinstalled on #fedora.
This means I do not need to battle with #python to extract quotes from images and instead can do it all via #bash like
```
for f in *.png; do tesseract "$f" "${f%.*}"; done
```
within the specific directory