mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-12-18 11:28: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
|