blob: 25fa54a5322c724453f1c466c77485d3a9d31be5 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
. $srcdir/defs.inc || exit 3
for i in $plain_files ; do
echo "$usrpass1" | ./run-gpg --passphrase-fd 0 -seat -r two -o x --yes $i
./run-gpg -o y --yes x
cmp $i y || error "$i: mismatch"
done
|