blob: bf2262e4d79f5c609def0f7fca15c7b3fbbd1b7f (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
#!/bin/sh
export LANG; LANG=C
case $# in
0) 1>&2 echo Usage: $0 files...; exit 1;;
esac
case $1 in
-f*) idfile_arg=$1; shift;;
esac
errors=
if idx "$@" |sort -u >ID.idx &&
lid $idfile_arg |sed -e 's/[ ].*//' |sort -u >ID.lid &&
cmp -s ID.idx ID.lid
then
rm -f ID.idx ID.lid
echo "Good. idx and lid agree."
else
1>&2 echo "Oops! idx and lid disagree--look in ID.idx and ID.lid"
errors=t
fi
idx_file=$$.idx
fid_file=$$.fid
for file
do
case x$file in
x-*) scan_args="$scan_args $file"
continue;;
esac
if fid $idfile_arg $file >$fid_file &&
idx $scan_args $file |sort -u >$idx_file &&
cmp -s $idx_file $fid_file;
then
echo "Good. idx and fid agree for $file"
else
1>&2 echo "Oops! idx and fid disagree for $file"
errors=t
fi
done
rm -f $idx_file $fid_file
case x$errors in
xt) echo "Some checks failed."
echo "mkid and friends are broken--boo hoo!"
exit 1;;
*) echo "All checks successful."
echo "mkid and friends are happy!"
exit 0;;
esac
|