mirror of
https://github.com/qurator-spk/ocrd_repair_inconsistencies.git
synced 2025-06-09 19:59:59 +02:00
📝 Update fix script
This commit is contained in:
parent
1c44a198af
commit
b2845ad254
2 changed files with 8 additions and 8 deletions
|
@ -11,16 +11,16 @@ We wrote this as a one-shot script to fix some files. Use with caution.
|
||||||
|
|
||||||
For example, use this fix script:
|
For example, use this fix script:
|
||||||
~~~sh
|
~~~sh
|
||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
tmp_fg=FIXED_$RANDOM
|
tmp_fg=FIXED_$RANDOM
|
||||||
|
|
||||||
ocrd_repair_inconsistencies -I OCR-D-GT-PAGE -O $tmp_fg
|
ocrd_repair_inconsistencies -I OCR-D-GT-PAGE -O $tmp_fg
|
||||||
|
|
||||||
for f in $tmp_fg/*; do
|
for f in "$tmp_fg"/*; do
|
||||||
g="OCR-D-GT-PAGE/OCR-D-GT-PAGE_${f#$tmp_fg/$tmp_fg_}"
|
g="OCR-D-GT-PAGE/OCR-D-GT-PAGE_${f#${tmp_fg}/${tmp_fg}_}"
|
||||||
cp $f $g
|
cp "$f" "$g"
|
||||||
done
|
done
|
||||||
|
|
||||||
ocrd workspace remove-group -rf $tmp_fg
|
ocrd workspace remove-group -rf $tmp_fg
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
tmp_fg=FIXED_$RANDOM
|
tmp_fg=FIXED_$RANDOM
|
||||||
|
|
||||||
ocrd_repair_inconsistencies -I OCR-D-GT-PAGE -O $tmp_fg
|
ocrd_repair_inconsistencies -I OCR-D-GT-PAGE -O $tmp_fg
|
||||||
|
|
||||||
for f in $tmp_fg/*; do
|
for f in "$tmp_fg"/*; do
|
||||||
g="OCR-D-GT-PAGE/OCR-D-GT-PAGE_${f#$tmp_fg/$tmp_fg_}"
|
g="OCR-D-GT-PAGE/OCR-D-GT-PAGE_${f#${tmp_fg}/${tmp_fg}_}"
|
||||||
cp $f $g
|
cp "$f" "$g"
|
||||||
done
|
done
|
||||||
|
|
||||||
ocrd workspace remove-group -rf $tmp_fg
|
ocrd workspace remove-group -rf $tmp_fg
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue