]> git.donarmstrong.com Git - deb_pkgs/scowl.git/blobdiff - r/special/sort
Imported Upstream version 2015.08.24
[deb_pkgs/scowl.git] / r / special / sort
diff --git a/r/special/sort b/r/special/sort
new file mode 100755 (executable)
index 0000000..1d9582a
--- /dev/null
@@ -0,0 +1,47 @@
+#!/bin/sh
+
+export LC_ALL=C
+export LANG=C
+
+to_sort() {
+cat <<EOF
+abbreviations
+abbreviations-also
+add-possessive
+exclude.60
+exclude.70
+exclude.80
+extra.60
+hacker-exclude
+letters
+name-endings
+name-endings.60
+names-part
+never-abbreviations
+never-variant
+not-possessive
+not-upper
+proper-names
+roman-numerals
+signature.35
+signature.50
+signature.60
+signature.70
+unix-terms
+variant_1
+variant_2
+variant_3
+marco-alan.60
+marco-alan.70
+marco.80
+high-freq.60
+high-freq.70
+prefixes
+neol2015.poss
+EOF
+}
+
+for f in `to_sort`
+do
+    sort -u $f -o $f
+done