mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2025-01-09 20:37:51 +08:00
9 lines
151 B
Plaintext
9 lines
151 B
Plaintext
|
#!/bin/sh
|
||
|
for f in DangAmbigs freq-dawg inttemp normproto pffmtable unicharset user-words word-dawg
|
||
|
do
|
||
|
if [ ! -r $1.$f ]
|
||
|
then
|
||
|
touch $1.$f
|
||
|
fi
|
||
|
done
|