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 37 38 39 40 41 42 43 44 45 46 47 48 49
|
#!/bin/sh
#Data files moved to /usr/share instead of /etc, remove old:
for subdir in "" "nld/" "nl/"; do #deal with three possible variants that have existed at some point
echo "rm_conffile /etc/frog/${subdir}Frog.mbdp.1.0.dir.ibase 0.13.7~"
echo "rm_conffile /etc/frog/${subdir}Frog.mbdp.1.0.dir.ibase.wgt 0.13.7~"
echo "rm_conffile /etc/frog/${subdir}Frog.mbdp.1.0.pairs.sampled.ibase 0.13.7~"
echo "rm_conffile /etc/frog/${subdir}Frog.mbdp.1.0.pairs.sampled.ibase.wgt 0.13.7~"
echo "rm_conffile /etc/frog/${subdir}Frog.mbdp.1.0.rels.ibase 0.13.7~"
echo "rm_conffile /etc/frog/${subdir}Frog.mbdp.1.0.rels.ibase.wgt 0.13.7~"
echo "rm_conffile /etc/frog/${subdir}Frog.mbt.1.0.1paxes 0.13.7~"
echo "rm_conffile /etc/frog/${subdir}Frog.mbt.1.0.known.dddwfWaw 0.13.7~"
echo "rm_conffile /etc/frog/${subdir}Frog.mbt.1.0.known.dddwfWaw.wgt 0.13.7~"
echo "rm_conffile /etc/frog/${subdir}Frog.mbt.1.0.known.dddwfWawa.wgt 0.13.7~"
echo "rm_conffile /etc/frog/${subdir}Frog.mbt.1.0.known.dddwfWawa 0.13.7~"
echo "rm_conffile /etc/frog/${subdir}Frog.mbt.1.0.lex 0.13.7~"
echo "rm_conffile /etc/frog/${subdir}Frog.mbt.1.0.lex.ambi.05 0.13.7~"
echo "rm_conffile /etc/frog/${subdir}Frog.mbt.1.0.settings 0.13.7~"
echo "rm_conffile /etc/frog/${subdir}Frog.mbt.1.0.top500 0.13.7~"
echo "rm_conffile /etc/frog/${subdir}Frog.mbt.1.0.unknown.chnppdddwFawasss 0.13.7~"
echo "rm_conffile /etc/frog/${subdir}Frog.mwu.1.0 0.13.7~"
echo "rm_conffile /etc/frog/${subdir}cgn_token.trans 0.13.7~"
echo "rm_conffile /etc/frog/${subdir}cgntags.main 0.13.7~"
echo "rm_conffile /etc/frog/${subdir}cgntags.sub 0.13.7~"
echo "rm_conffile /etc/frog/${subdir}chunker.train.10paxes 0.13.7~"
echo "rm_conffile /etc/frog/${subdir}chunker.train.known.dddwfWawa 0.13.7~"
echo "rm_conffile /etc/frog/${subdir}chunker.train.known.dddwfWawa.wgt 0.13.7~"
echo "rm_conffile /etc/frog/${subdir}chunker.train.lex 0.13.7~"
echo "rm_conffile /etc/frog/${subdir}chunker.train.lex.ambi.05 0.13.7~"
echo "rm_conffile /etc/frog/${subdir}chunker.train.settings 0.13.7~"
echo "rm_conffile /etc/frog/${subdir}chunker.train.top1000 0.13.7~"
echo "rm_conffile /etc/frog/${subdir}chunker.train.unknown.chnppddwFawsss 0.13.7~"
echo "rm_conffile /etc/frog/${subdir}frog.cfg 0.13.7~"
echo "rm_conffile /etc/frog/${subdir}frog.filter 0.13.7~"
echo "rm_conffile /etc/frog/${subdir}mblem.transtable 0.13.7~"
echo "rm_conffile /etc/frog/${subdir}mblem.tree 0.13.7~"
echo "rm_conffile /etc/frog/${subdir}mblem.tree.wgt 0.13.7~"
echo "rm_conffile /etc/frog/${subdir}mbma.igtree 0.13.7~"
echo "rm_conffile /etc/frog/${subdir}mbma.igtree.wgt 0.13.7~"
echo "rm_conffile /etc/frog/${subdir}ner.data.10paxes 0.13.7~"
echo "rm_conffile /etc/frog/${subdir}ner.data.known.ddwdwfWawawaa 0.13.7~"
echo "rm_conffile /etc/frog/${subdir}ner.data.known.ddwdwfWawawaa.wgt 0.13.7~"
echo "rm_conffile /etc/frog/${subdir}ner.data.lex 0.13.7~"
echo "rm_conffile /etc/frog/${subdir}ner.data.lex.ambi.05 0.13.7~"
echo "rm_conffile /etc/frog/${subdir}ner.data.settings 0.13.7~"
echo "rm_conffile /etc/frog/${subdir}ner.data.top1000 0.13.7~"
echo "rm_conffile /etc/frog/${subdir}ner.data.unknown.chnppddwdwFawawaasss 0.13.7~"
echo "rm_conffile /etc/frog/${subdir}ner.known 0.13.7~"
echo "rm_conffile /etc/frog/${subdir}striptokens.txt 0.13.7~"
done
|