#!/bin/bash

for n in *.pgm ; do
echo -n "$n: "
NHOCR_DICDIR=../dic ../src/nhocr -line -o - $n
done
