summaryrefslogtreecommitdiffstats
path: root/fiz/naloga/suženjstvo/transformiraj.sh
blob: 8b379ac1ef91dcf8001e24e8fa5ac561e54c82a9 (plain) (blame)
1
2
3
4
5
6
7
#!/bin/bash
for i in *.tsv
do
	t=`rev <<<$i | cut -d. -f2- | rev`
	echo $t
	./a.out ../videi/$t.txt `grep "$t	" ../videi/podatki.tsv` < $t.tsv > ../transformirane/$t.tsv # pazi, da je prazen prostor res tabulator
done