s416178-mlworkshops/shell_script.sh

12 lines
328 B
Bash
Raw Normal View History

2020-04-03 11:00:04 +02:00
#!/bin/bash
2020-04-03 11:43:31 +02:00
wc -l $1
2020-04-03 12:44:08 +02:00
cut -f 2 $1 > hypothesis.txt
cut -f 3 $1 > reference.txt
awk 'BEGIN{FS=OFS="\t"}{print $0,"(sp1_"NR")"}' < hypothesis.txt > hypothesis.trn
awk 'BEGIN{FS=OFS="\t"}{print $0,"(sp1_"NR")"}' < reference.txt > reference.trn
sclite -f 0 -r reference.trn trn -h hypothesis.trn trn -e utf-8 -i rm -o all stdout