mirror of
git://git.gnupg.org/gnupg.git
synced 2024-10-31 20:08:43 +01:00
17 lines
293 B
Plaintext
17 lines
293 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
if [ $# != 3 ]; then
|
||
|
echo "Usage: signdemokey name user_id user_id_no"
|
||
|
exit 1
|
||
|
fi
|
||
|
name="$1"
|
||
|
user_id="$2"
|
||
|
user_id_no="$3"
|
||
|
|
||
|
echo "abc" | ../g10/gpg2 --options ./gpg.conf --homedir $name \
|
||
|
--sign-key --batch --yes --passphrase-fd 0 $user_id \
|
||
|
$user_id_no sign save
|
||
|
|