12 lines
258 B
Bash
12 lines
258 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
# author: Daniel Sommer <daniel.sommer@velvettear.de>
|
||
|
# license: MIT
|
||
|
|
||
|
file="$1"
|
||
|
[[ ! -f "$file" ]] && printf "error: specified file '"$file"' does not exist!\n" >&2 && exit 1
|
||
|
|
||
|
export OMP_THREAD_LIMIT=1
|
||
|
|
||
|
tesseract "$file" - -l "deu+eng"
|