summaryrefslogblamecommitdiffstats
path: root/bash-completion/unshare
blob: 295d02f90ce123c6984ca2fe3113674cfcf49d9e (plain) (tree)























                                                                        
_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