completion.bash
changeset 8 5e9d46863588
parent 6 c853cc971b78
--- a/completion.bash	Wed Dec 07 05:16:20 2005 +0000
+++ b/completion.bash	Fri Dec 09 06:05:38 2005 +0000
@@ -6,8 +6,8 @@
     local cur=${COMP_WORDS[COMP_CWORD]}
     local pre=${COMP_WORDS[COMP_CWORD - 1]}
     case "$COMP_CWORD" in
-    1) COMPREPLY=($(compgen -W "account alias shared" -- $cur));;
-    2) COMPREPLY=($(compgen -W "--add --del --list --mod" -- $cur));;
+    1) COMPREPLY=($(compgen -W "account alias group shared" -- $cur));;
+    2) COMPREPLY=($(compgen -W "--add --del --list --modify" -- $cur));;
     esac
 }