Skip to content

Instantly share code, notes, and snippets.

@psy0rz
Created August 21, 2012 10:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save psy0rz/3414322 to your computer and use it in GitHub Desktop.
Save psy0rz/3414322 to your computer and use it in GitHub Desktop.
#!/bin/bash
while true; do
for BLA in *jpg; do
if ! [ -e $BLA.txt ]; then
echo "Processing $BLA ..."
tesseract $BLA $BLA -l nld
fi
done
echo sleeping...
sleep 60
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment