diff options
author | An-Cheng Huang <ancheng@vyatta.com> | 2008-06-30 14:33:50 -0700 |
---|---|---|
committer | An-Cheng Huang <ancheng@vyatta.com> | 2008-06-30 14:33:50 -0700 |
commit | c90fc08925d58c10d0a462751d8ed51b90253eed (patch) | |
tree | 334e112b9d9c57179165ae64b4d6a769fb21f91a /etc/bash_completion.d | |
parent | e6e7dc57dc71495c40ee6937bff703c2c4a7f3ed (diff) | |
download | vyatta-cfg-c90fc08925d58c10d0a462751d8ed51b90253eed.tar.gz vyatta-cfg-c90fc08925d58c10d0a462751d8ed51b90253eed.zip |
add help string for "copy" and "rename"
Diffstat (limited to 'etc/bash_completion.d')
-rwxr-xr-x | etc/bash_completion.d/20vyatta-cfg | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/etc/bash_completion.d/20vyatta-cfg b/etc/bash_completion.d/20vyatta-cfg index a034937..3b523bd 100755 --- a/etc/bash_completion.d/20vyatta-cfg +++ b/etc/bash_completion.d/20vyatta-cfg @@ -814,22 +814,26 @@ vyatta_config_complete () if (( ${#COMP_WORDS[@]} < 2 )); then declare -a hitems=( "commit" \ + "copy" \ "delete" \ - "discard" \ + "discard" \ "edit" \ "exit" \ "load" \ + "rename" \ "run" \ "save" \ "set" \ "show" ) declare -a hstrs=( \ "Commit the current set of changes" \ + "Copy a configuration element" \ "Delete a configuration element" \ "Discard uncommitted changes" \ "Edit a sub-element" \ "Exit from this configuration level" \ "Load configuration from a file" \ + "Rename a configuration element" \ "Run an operational-mode command" \ "Save configuration to a file" \ "Set the value of a parameter or create a new element" \ |