From 37b0a4ab075a9b526a7ab8508282039f37355d93 Mon Sep 17 00:00:00 2001 From: Nick White Date: Tue, 23 Jul 2019 16:21:35 +0100 Subject: fix hocrtotxtdir.sh --- hocrtotxtdir.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hocrtotxtdir.sh b/hocrtotxtdir.sh index 20c45a5..d627670 100644 --- a/hocrtotxtdir.sh +++ b/hocrtotxtdir.sh @@ -2,4 +2,4 @@ usage="usage: $0 dirname" test $# -ne 1 && echo "$usage" && exit 1 -for i in "$1"/*hocr; do b=`basename "$i" .hocr`; d=`dirname "$i"`; ~/rescribe/2018-natphil/src/go/bin/hocrtotxt "$i" > "$d/$b.txt"; done +for i in "$1"/*hocr; do b=`basename "$i" .hocr`; d=`dirname "$i"`; hocrtotxt "$i" > "$d/$b.txt"; done -- cgit v1.2.1-24-ge1ad