diff options
Diffstat (limited to 'extra/source/aspell-word-lists/build/increment-all-dict.sh')
-rwxr-xr-x | extra/source/aspell-word-lists/build/increment-all-dict.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/extra/source/aspell-word-lists/build/increment-all-dict.sh b/extra/source/aspell-word-lists/build/increment-all-dict.sh new file mode 100755 index 00000000..99861dc6 --- /dev/null +++ b/extra/source/aspell-word-lists/build/increment-all-dict.sh @@ -0,0 +1,12 @@ +#!/bin/sh +# A script to increment build numbers of all the dictionaries. +# +# Any that are newly added should not have a build file in +# here (or it should contain "1"). The usual method is to run this +# script and then remove the build files for any new driver versions. + +for DICTSRC in ../src/* ; do + DICTBASENAME=$(basename $DICTSRC | cut -f 1,2 -d -) + ./increment.sh $DICTBASENAME +done + |