diff options
author | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2008-08-17 23:47:43 -0400 |
---|---|---|
committer | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2008-08-17 23:47:43 -0400 |
commit | 26ad8fe480056709dacf9e06e8151de167a908ab (patch) | |
tree | a3d2189ef12f2e7b9ba4ac6d0e26bd62ed2f12d6 /src | |
parent | ced3f32242a7f06a6ccb131e7ec500c95441577d (diff) |
fixing usage for gen-subkey; allowing --help for monkeysphere (to match monkeysphere-server behavior).
Diffstat (limited to 'src')
-rwxr-xr-x | src/monkeysphere | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/monkeysphere b/src/monkeysphere index f959a38..303dc8d 100755 --- a/src/monkeysphere +++ b/src/monkeysphere @@ -39,7 +39,7 @@ MonkeySphere client tool. subcommands: update-known_hosts (k) [HOST]... update known_hosts file update-authorized_keys (a) update authorized_keys file - gen-subkey (g) KEYID generate an 'a' capable subkey + gen-subkey (g) [KEYID] generate an authentication subkey --length (-l) BITS key length in bits (2048) --expire (-e) EXPIRE date to expire help (h,?) this help @@ -288,7 +288,7 @@ case $COMMAND in gen_subkey "$@" ;; - 'help'|'h'|'?') + '--help'|'help'|'-h'|'h'|'?') usage ;; |