mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-06 12:33:23 +01:00
10 lines
246 B
Plaintext
10 lines
246 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
. defs.inc || exit 3
|
||
|
|
||
|
#info Checking detached signatures of multiple files
|
||
|
i="$plain_files $data_files"
|
||
|
echo "$usrpass1" | run_gpg --passphrase-fd 0 -sb -o x --yes $i
|
||
|
cat $i | run_gpg -o /dev/null --yes x || error "$i: bad signature"
|
||
|
|