mirror of
git://git.gnupg.org/gnupg.git
synced 2024-10-31 20:08:43 +01:00
17 lines
291 B
Bash
Executable File
17 lines
291 B
Bash
Executable File
#!/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/gpg --options ./options --homedir $name \
|
|
--sign-key --batch --yes --passphrase-fd 0 $user_id \
|
|
$user_id_no sign save
|
|
|