mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-12-05 02:47:00 +08:00
4df1016692
git-svn-id: https://tesseract-ocr.googlecode.com/svn/trunk@84 d0cd1f9f-072b-0410-8dd7-cf729c803f20
9 lines
151 B
Bash
Executable File
9 lines
151 B
Bash
Executable File
#!/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
|