main: some clarifications

This commit is contained in:
Mirek Kratochvil 2013-04-27 00:56:34 +02:00
parent 6e3bfbe6d3
commit 805a275df7
2 changed files with 5 additions and 5 deletions

View file

@ -32,7 +32,7 @@ margin. Let's play with random data!
ccr -K #watch the generated keys
ccr -k
ccr -p -a -o my_pubkeys.asc # and send pubkeys to friends
ccr -p -a -o my_pubkeys.asc -F Doe # export your pubkeys for friends
#see what people sent us
ccr -ina < friends_pubkeys.asc

View file

@ -59,11 +59,11 @@ void print_help (char*pname)
outeol;
out ("Key management:");
out (" -g, --gen-key generate specified keypair, `help' lists algorithms");
out (" -k, --list list matching keys");
out (" -k, --list list keys");
out (" -K, --list-secret");
out (" -i, --import import keys (optionally rename them)");
out (" -i, --import import keys");
out (" -I, --import-secret");
out (" -p, --export export matching keys");
out (" -p, --export export keys");
out (" -P, --export-secret");
out (" -x, --delete delete matching keys");
out (" -X, --delete-secret");
@ -74,7 +74,7 @@ void print_help (char*pname)
out (" -n, --no-action on import, only show what would be imported");
out (" -N, --name specify a new name for renaming or importing");
out (" -F, --filter only work with keys with matching names");
out (" -f, --fingerprint format key IDs nicely for human eyes");
out (" -f, --fingerprint format full key IDs nicely for human eyes");
outeol;
out ("Codecrypt eats data. Use it with caution.");
outeol;