File: testcorpus_eo-en.sh

package info (click to toggle)
apertium-eo-en 1.0.0~r63833-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 28,012 kB
  • sloc: xml: 32,398; python: 364; sh: 318; makefile: 134
file content (36 lines) | stat: -rwxr-xr-x 1,437 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/bin/bash

TMP=/tmp/eo-en
CRP=corpa/eo.crp.txt
mkdir -p testcache
NOVA=testcache/corpus_eo-en_nova_traduko.txt
ORIGINA=testcache/corpus_eo-en_origina_traduko.txt

if [ ! -e $CRP ]
then
	echo Elpakas $CRP
	bunzip2 -c corpa/eowiki.crp.txt.bz2 > $CRP
fi

echo "diff -w $ORIGINA $NOVA | grep -r '[<>]' > $TMP-crpdiff.txt && for i in \`cut -c3-8 $TMP-crpdiff.txt | sort -un\`; do echo  --- \$i ---; grep -r \"^ *\$i\\.\" $CRP; grep -r \"^. *\$i\\.\" $TMP-crpdiff.txt; done | less"

echo "cat $CRP | apertium -d . eo-en"
#make -s -j 3 && cat $CRP | apertium -d . eo-en-compounds > $NOVA || exit
#make -s -j 3 && cat $CRP | apertium -d . eo-en-j > $NOVA || exit
#make -s -j 3 && cat $CRP | apertium -d . eo-en-bytecode > $NOVA || exit
cat $CRP | apertium -d . eo-en-bytecode > $NOVA || exit
echo
grep '#' $NOVA && echo -e "^ Estis mankoj eo la cellingva dix, montrata supre ^\n"
grep '@' $NOVA && echo -e "^ Estis mankoj eo la dulingva dix, montrata supre ^\n"

if [ -e $ORIGINA ]
then
	diff -w $ORIGINA $NOVA | grep -r '[<>]' > $TMP-crpdiff.txt && for i in `cut -c3-8 $TMP-crpdiff.txt | sort -un`; do echo  --- $i ---; grep -r "^ *$i\." $CRP; grep -r "^. *$i\." $TMP-crpdiff.txt; done > testcorpus_eo-en.txt
	echo "Estis `cut -c3-8 $TMP-crpdiff.txt | sort -un | wc -l` difereoco(j) - rigardu eo: testcorpus_eo-en.txt"
	echo
fi

echo "Se vi volas uzi la nunan version por kompari veoontajn versiojn, voku nun:"
echo "mv $NOVA $ORIGINA"
echo