11 lines
387 B
Bash
11 lines
387 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Prepare hypothesis file based on column 2
|
||
|
cut -f2 'wikiniews_results.tsv' > hypothesis.txt
|
||
|
# Prepare reference file based on column 3
|
||
|
cut -f3 'wikiniews_results.tsv' > reference.txt
|
||
|
|
||
|
# awk transfer txt to .trn
|
||
|
awk 'BEGIN{FS=OFS="\t"}{print $0,"(sp1_"NR")"}' < referencje.txt > reference.trn
|
||
|
awk 'BEGIN{FS=OFS="\t"}{print $0,"(sp1_"NR")"}' < hipotezy.txt > hypothesis.trn
|