summaryrefslogtreecommitdiff
path: root/completions/iftop
diff options
context:
space:
mode:
Diffstat (limited to 'completions/iftop')
-rw-r--r--completions/iftop17
1 files changed, 4 insertions, 13 deletions
diff --git a/completions/iftop b/completions/iftop
index 9ec2a0d0..8c606172 100644
--- a/completions/iftop
+++ b/completions/iftop
@@ -1,11 +1,9 @@
-# iftop(8) completion
+# iftop(8) completion -*- shell-script -*-
-have iftop &&
_iftop()
{
- COMPREPLY=()
- local cur prev
- _get_comp_words_by_ref cur prev
+ local cur prev words cword
+ _init_completion || return
case $prev in
-h|-f|-F|-m)
@@ -21,15 +19,8 @@ _iftop()
;;
esac
- COMPREPLY=( $( compgen -W '-h -n -N -p -P -b -B -i -f -F -c -m' \
- -- "$cur" ) )
+ COMPREPLY=( $( compgen -W '$( _parse_help "$1" -h )' -- "$cur" ) )
} &&
complete -F _iftop iftop
-# Local variables:
-# mode: shell-script
-# sh-basic-offset: 4
-# sh-indent-comment: t
-# indent-tabs-mode: nil
-# End:
# ex: ts=4 sw=4 et filetype=sh