~ubuntu-branches/ubuntu/dapper/gnupg2/dapper

« back to all changes in this revision

Viewing changes to doc/mksamplekeys

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Mueller
  • Date: 2005-03-29 10:30:32 UTC
  • Revision ID: james.westby@ubuntu.com-20050329103032-sj42n2ain3ipx310
Tags: upstream-1.9.15
ImportĀ upstreamĀ versionĀ 1.9.15

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#/bin/sh
 
2
# Generate a samplekeys.asc
 
3
 
 
4
keys="5B0358A2 57548DCD 99242560 CA57AD7C B2D7795E 37D92FFB"
 
5
 
 
6
for i in $keys; do
 
7
  gpg --list-keys $i | awk ' { print "  " $0 }'
 
8
done
 
9
echo  
 
10
gpg --export -a $keys
 
11
 
 
12