mirror of
git://git.gnupg.org/gnupg.git
synced 2025-02-02 16:43:03 +01:00
11 lines
208 B
Plaintext
11 lines
208 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
. 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
|
||
|
|