X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=6%2Fsrc%2Fsplit-words;fp=6%2Fsrc%2Fsplit-words;h=0000000000000000000000000000000000000000;hb=b13ea8a082364672c6de2b010e558211ff52ec9a;hp=991a8ef47ab35936aaf5c7d92d13148d88ed559c;hpb=01534a94130c1f5a3a230cf4fe18365a235ba271;p=deb_pkgs%2Fscowl.git diff --git a/6/src/split-words b/6/src/split-words deleted file mode 100755 index 991a8ef..0000000 --- a/6/src/split-words +++ /dev/null @@ -1,48 +0,0 @@ -#!/bin/sh - -rm -f working/*.$1.pre - -comm -12 working/words.$1 r/varcon/american.lst \ - > working/american-all.$1.pre - -comm -12 working/words.$1 r/varcon/british.lst \ - > working/british-all.$1.pre - -comm -12 working/words.$1 r/varcon/british_z.lst \ - > working/british_z-all.$1.pre - -comm -12 working/words.$1 r/varcon/canadian.lst \ - > working/canadian-all.$1.pre - -comm -12 working/words.$1 working/variant_0.lst \ - > working/variant_0-all.$1.pre - -comm -12 working/words.$1 working/variant_1.lst \ - > working/variant_1-all.$1.pre - -comm -12 working/words.$1 working/variant_2.lst \ - > working/variant_2-all.$1.pre - -cat working/*-all.$1.pre \ - | sort | uniq \ - | comm -13 - working/words.$1 \ - > working/english-all.$1.pre - -for s in `src/list-spellings` -do - for c in `src/list-classes -1` - do - comm -12 working/$s-all.$1.pre working/$c.lst > working/$s-$c.$1.pre - cat working/$s-$c.$1.pre >> working/$s-other.$1.pre - done - sort working/$s-other.$1.pre | uniq \ - | comm -13 - working/$s-all.$1.pre \ - > working/$s-words.$1.pre - #rm working/$s-{all,other}.$1.pre -done - - - - - -