diff options
author | Michael Larson <slioch@eng-140.vyatta.com> | 2008-06-30 17:11:40 -0700 |
---|---|---|
committer | Michael Larson <slioch@eng-140.vyatta.com> | 2008-06-30 17:11:40 -0700 |
commit | 051d4e71597d7a8b947a9a9195167d63dc5dec50 (patch) | |
tree | 20f69be4a181924c3921fe1cd5d3b4e1260a2b25 /etc/bash_completion.d/20vyatta-cfg | |
parent | 2eb529344218114f29d34e60f8485d18e49508ce (diff) | |
parent | 7800d646eb6af2a41b82f25bd2961bfaf1dd202e (diff) | |
download | vyatta-cfg-051d4e71597d7a8b947a9a9195167d63dc5dec50.tar.gz vyatta-cfg-051d4e71597d7a8b947a9a9195167d63dc5dec50.zip |
Merge branch 'hollywood' of http://git.vyatta.com/vyatta-cfg into hollywood
Diffstat (limited to 'etc/bash_completion.d/20vyatta-cfg')
-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" \ |