Blame view

extractTags.sh 323 Bytes
Michał Lenart authored
1
2
3
4
5
6
7
#!/bin/bash

echo '#!MORFEUSZ-TAGSET 0.1'
echo
echo '[TAGS]'
echo
echo $'0\tign'
Michał Lenart authored
8
cat input/sgjp-hom.tab input/dodatki.tab | cut -d$'\t' -f3 | sort -u | cat -n | sed -r 's/^\s+//g'
Michał Lenart authored
9
10
11
echo
echo '[NAMES]'
echo $'0\t'
Michał Lenart authored
12
cat input/sgjp-hom.tab input/dodatki.tab | cut -d$'\t' -f4 | egrep '.' | sort -u | cat -n | sed -r 's/^\s+//g'