diff options
-rw-r--r-- | etc/bash_completion.d/vyatta-op | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/etc/bash_completion.d/vyatta-op b/etc/bash_completion.d/vyatta-op index ba54032..8ac2d9b 100644 --- a/etc/bash_completion.d/vyatta-op +++ b/etc/bash_completion.d/vyatta-op @@ -125,11 +125,13 @@ _vyatta_op_print_help () elif [ ${#help} -eq 0 ] ; then echo -ne "\n $label" elif [ ${#label} -lt 6 ] ; then - echo -ne "\n $label\t\t$help" + echo -ne "\n $label\t\t\t$help" elif [ ${#label} -lt 14 ] ; then + echo -ne "\n $label\t\t$help" + elif [ ${#label} -lt 21 ] ; then echo -ne "\n $label\t$help" else - echo -ne "\n $label\n\t\t$help" + echo -ne "\n $label\n\t\t\t$help" fi } |