diff --git a/README.md b/README.md index 150bd81..21b451d 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/src/main.cpp b/src/main.cpp index 9f64e2c..48693c9 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -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;