diff options
author | John Southworth <john.southworth@vyatta.com> | 2011-08-01 13:23:11 -0500 |
---|---|---|
committer | John Southworth <john.southworth@vyatta.com> | 2011-08-01 13:23:11 -0500 |
commit | 3642f1ca4243c4439386808230955a851dc96db6 (patch) | |
tree | 6f065b8aeaab72904fdaaac45ce2dee5b91a5cd5 /etc/bash_completion.d | |
parent | bd15fcfb8cc1f05a16640f0eccff1eb111743283 (diff) | |
download | vyatta-cfg-3642f1ca4243c4439386808230955a851dc96db6.tar.gz vyatta-cfg-3642f1ca4243c4439386808230955a851dc96db6.zip |
Cleanup help text for compare
Diffstat (limited to 'etc/bash_completion.d')
-rwxr-xr-x | etc/bash_completion.d/vyatta-cfg | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/bash_completion.d/vyatta-cfg b/etc/bash_completion.d/vyatta-cfg index 104cb9a..7591915 100755 --- a/etc/bash_completion.d/vyatta-cfg +++ b/etc/bash_completion.d/vyatta-cfg @@ -458,7 +458,7 @@ print_commit_log () local count=0 for i in "${array[@]}"; do i=${i//_/ } - echo -e "$count\t$i" + echo -e " $count\t$i" (( count++ )) done } @@ -498,7 +498,7 @@ vyatta_compare_complete () echo echo "Possible completions:" echo -e " <enter>\tCompare working & active configurations" - echo -e " <N>\tCompare working with revision N" + echo -e " <N>\t\tCompare working with revision N" echo -e " <N> <M>\tCompare revision N with M" print_commit_log COMPREPLY=( "" " " ) @@ -506,7 +506,7 @@ vyatta_compare_complete () echo echo "Possible completions:" echo -e " <enter>\tCompare working & active configurations" - echo -e " <N>\tCompare working with revision N" + echo -e " <N>\t\tCompare working with revision N" echo -e " <N> <M>\tCompare revision N with M" print_commit_log COMPREPLY=( "" " " ) |