0xV3NOMx
Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64



Your IP : 18.191.218.101


Current Path : /snap/core/current/etc/bash_completion.d/
Upload File :
Current File : //snap/core/current/etc/bash_completion.d/insserv

# insserv(8) completion
#
# Copyright (c) 2009 Kel Modderman <kel@otaku42.de>
#

have insserv &&
_insserv()
{
    local cur prev sysvdir services options

    cur=`_get_cword`
    prev=${COMP_WORDS[COMP_CWORD-1]}

    [ -d /etc/rc.d/init.d ] && sysvdir=/etc/rc.d/init.d \
	|| sysvdir=/etc/init.d

    services=( $(echo $sysvdir/!(README*|*.dpkg*|*.rpm@(orig|new|save))) )
    services=( ${services[@]#$sysvdir/} )
    options=( -c --config -d -f -n -o --override -p --path -r -v )

    case "$prev" in
	-c|--config)
	    _filedir
	    ;;
	-o|--override|-p|--path)
	    _filedir -d
	    ;;
	*)
	    COMPREPLY=( $( compgen -W '${options[@]} ${services[@]}' -- \
		$cur ) )
	    ;;
    esac

    return 0
} &&
complete -F _insserv insserv