blob: 5cd3650e4e2504d5aabae0edc5dc25cf38e14c49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# bash completion for nethogs(8) -*- shell-script -*-
_nethogs()
{
local cur prev words cword
_init_completion || return
case "$prev" in
-d)
# expect integer value
COMPREPLY+=($(compgen -W '{0..9}'))
compopt -o nospace
return
;;
esac
if [[ $cur == -* ]]; then
COMPREPLY=($(compgen -W '$(_parse_usage "$1" -h)' -- "$cur"))
return
fi
_available_interfaces -a
} &&
complete -F _nethogs nethogs
# ex: filetype=sh
|