blob: 2b5698c0ff224a641006513cd0bb283f6357d721 (
plain)
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
26
27
28
29
30
31
|
#!/bin/sh -
#
# $Id: chk.str,v 1.5 2001/10/12 17:55:36 bostic Exp $
#
# Check spelling in quoted strings.
d=../..
[ -f $d/LICENSE ] || {
echo 'FAIL: cannot find source distribution directory.'
exit 1
}
t1=__t1
sed -e '/^#include/d' \
-e '/revid/d' \
-e '/"/!d' \
-e 's/^[^"]*//' \
-e 's/%s/ /g' \
-e 's/[^"]*$//' \
-e 's/\\[nt]/ /g' $d/*/*.c $d/*/*.cpp |
spell | sort | comm -23 /dev/stdin spell.ok > $t1
test -s $t1 && {
cat $t1
echo "FAIL: found questionable spelling in strings."
exit 1
}
exit 0
|