25 lines
406 B
Text
25 lines
406 B
Text
|
_unshare_module()
|
||
|
{
|
||
|
local cur OPTS
|
||
|
COMPREPLY=()
|
||
|
cur="${COMP_WORDS[COMP_CWORD]}"
|
||
|
case $cur in
|
||
|
-*)
|
||
|
OPTS="-m --mount
|
||
|
-u --uts
|
||
|
-i --ipc
|
||
|
-n --net
|
||
|
-p --pid
|
||
|
-U --user
|
||
|
-h --help
|
||
|
-V --version"
|
||
|
COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) )
|
||
|
return 0
|
||
|
;;
|
||
|
esac
|
||
|
compopt -o bashdefault
|
||
|
COMPREPLY=( $(compgen -c -- $cur) )
|
||
|
return 0
|
||
|
}
|
||
|
complete -F _unshare_module unshare
|