mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-11-24 02:59:07 +08:00
311d1f9253
git-svn-id: https://tesseract-ocr.googlecode.com/svn/trunk@576 d0cd1f9f-072b-0410-8dd7-cf729c803f20
11 lines
243 B
Bash
Executable File
11 lines
243 B
Bash
Executable File
#!/bin/sh
|
|
UNICHARSET_VERSION="v1"
|
|
for f in DangAmbigs freq-dawg.${UNICHARSET_VERSION} inttemp normproto pffmtable
|
|
unicharset.${UNICHARSET_VERSION} user-words word-dawg.${UNICHARSET_VERSION}
|
|
do
|
|
if [ ! -r $1.$f ]
|
|
then
|
|
touch $1.$f
|
|
fi
|
|
done
|