From e3a1d1e94118ad03011014c0eae637659a0b8bee Mon Sep 17 00:00:00 2001 From: "Gerber, Mike" Date: Mon, 25 Nov 2019 11:58:57 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20README:=20Include=20an=20example?= =?UTF-8?q?=20script?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/README.md b/README.md index 1acfdcd..33bda22 100644 --- a/README.md +++ b/README.md @@ -5,3 +5,24 @@ are only fixed if reordering their children top-to-bottom/left-to-right fixes the appropriately concatenated text of the children to match the parent's text. We wrote this as a one-shot script to fix some files. Use with caution. + + +## Example usage + +For example, use this fix script: +~~~sh +#!/bin/sh +set -e + +tmp_fg=FIXED_$RANDOM + +ocrd_repair_inconsistencies -I OCR-D-GT-PAGE -O $tmp_fg + +for f in $tmp_fg/*; do + g="OCR-D-GT-PAGE/OCR-D-GT-PAGE_${f#$tmp_fg/$tmp_fg_}" + cp $f $g +done + +ocrd workspace remove-group -rf $tmp_fg +rmdir $tmp_fg +~~~