File: refresh

package info (click to toggle)
aspell 0.60.8.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 15,336 kB
  • sloc: cpp: 24,378; sh: 12,340; perl: 1,924; ansic: 1,661; makefile: 852; sed: 16
file content (25 lines) | stat: -rwxr-xr-x 654 bytes parent folder | download | duplicates (4)
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
#!/bin/sh

set -e

for f in 00-special 02-orig 05-common
do
    for mode in ultra fast normal slow bad-spellers
    do
        echo "** $f $mode"
        time ./run-batch "../inst/bin/aspell --sug-mode=$mode" $f.tab $f-$mode-expect
    done
    for mode in ultra normal
    do
        echo "** $f $mode"
        time ./run-batch "../inst/bin/aspell --keyboard=none --sug-mode=$mode" $f.tab $f-$mode-nokbd-expect
    done
done
for f in 00-special
do
    for mode in ultra fast normal slow bad-spellers
    do
        echo "** $f $mode"
        time ./run-batch "../inst/bin/aspell --sug-mode=$mode --camel-case" $f.tab $f-$mode-camel-expect
    done
done