mirror of
git://git.gnupg.org/gnupg.git
synced 2024-11-04 20:38:50 +01:00
11 lines
208 B
Bash
Executable File
11 lines
208 B
Bash
Executable File
#!/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
|
|
|