aboutsummaryrefslogtreecommitdiff
path: root/bash/bash_completion.d/chgrp.bash
blob: e63651c5a6885384a7a950b9f78d056f5b3ed285 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Complete group names for first non-option chgrp(1) argument
_chgrp() {
    local i
    for ((i = 1; i < COMP_CWORD; i++)) ; do
        case ${COMP_WORDS[i]} in
            -*) ;;
            *) return 1 ;;
        esac
    done
    while read -r group ; do
        COMPREPLY[${#COMPREPLY[@]}]=$group
    done < <(compgen -A group -- "$2")
}
complete -F _chgrp -o bashdefault -o default chgrp