diff options
Diffstat (limited to '')
-rw-r--r-- | data/spelling/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/data/spelling/Makefile b/data/spelling/Makefile new file mode 100644 index 0000000..3c31861 --- /dev/null +++ b/data/spelling/Makefile @@ -0,0 +1,6 @@ +sort: sort-corrections sort-corrections-case sort-corrections-multiword + +sort-%: % + csplit --prefix $<- $< '/^$$/' + LC_ALL=en_US.UTF-8 sort -u $<-01 | cat $<-00 - > $< + rm -f $<-0[01] |