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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
#
# Bash completion definition for imgp.
#
# Author:
# Arun Prakash Jana <engineerarun@gmail.com>
#
_imgp () {
COMPREPLY=()
local IFS=$' \n'
local cur=$2 prev=$3
local -a opts opts_with_args
opts=(
-a --adapt
-c --convert
-e --eraseexif
-f --force
-H --hidden
-i --includeimgp
-k --keep
-m --mute
-M --minres
-n --enlarge
-N --nearest
-o --rotate
-O --optimize
-P --progressive
-q --quality
-r --recurse
-s --size
-w --overwrite
-x --res
-d --debug
-h --help
)
opts_with_arg=(
-M --minres
-o --rotate
-q --quality
-s --size
-x --res
)
# Do not complete non option names
[[ $cur == -* ]] || return 1
# Do not complete when the previous arg is an option expecting an argument
for opt in "${opts_with_arg[@]}"; do
[[ $opt == $prev ]] && return 1
done
# Complete option names
COMPREPLY=( $(compgen -W "${opts[*]}" -- "$cur") )
return 0
}
complete -F _imgp imgp
|