summaryrefslogtreecommitdiff
path: root/completions/lsof
diff options
context:
space:
mode:
authorGabriel F. T. Gomes <gabriel@inconstante.net.br>2020-08-03 18:43:14 -0300
committerGabriel F. T. Gomes <gabriel@inconstante.net.br>2020-08-03 18:43:14 -0300
commitcc81eb120ad1a456f030f7b828697013a9b2b66a (patch)
treebb61702f98b407b2f7987faa846190fb3f002e55 /completions/lsof
parent8394526300cc384e53c470303aeb8b4fdcaf84a3 (diff)
parent95623d39d6029ba78ec96ad5ea08e9ac12629b91 (diff)
downloadbash-completion-cc81eb120ad1a456f030f7b828697013a9b2b66a.tar.gz
Update upstream source from tag 'upstream/2.11'
Update to upstream version '2.11' with Debian dir 932c2c1a6192441f3cd8897e72d737f2f0277f60
Diffstat (limited to 'completions/lsof')
-rw-r--r--completions/lsof20
1 files changed, 10 insertions, 10 deletions
diff --git a/completions/lsof b/completions/lsof
index e904f406..eb1e967d 100644
--- a/completions/lsof
+++ b/completions/lsof
@@ -6,23 +6,23 @@ _lsof()
_init_completion || return
case $prev in
- -'?'|-h|+c|-c|-d|-F|-i|+r|-r|-s|-S|-T)
+ -'?' | -h | +c | -c | -d | -F | -i | +r | -r | -s | -S | -T)
return
;;
- -A|-k|-m|+m|-o)
+ -A | -k | -m | +m | -o)
_filedir
return
;;
- +d|+D)
+ +d | +D)
_filedir -d
return
;;
-D)
- COMPREPLY=( $(compgen -W '? b i r u' -- "$cur") )
+ COMPREPLY=($(compgen -W '? b i r u' -- "$cur"))
return
;;
-f)
- COMPREPLY=( $(compgen -W 'c f g G n' -- "$cur") )
+ COMPREPLY=($(compgen -W 'c f g G n' -- "$cur"))
return
;;
-g)
@@ -37,20 +37,20 @@ _lsof()
;;
-u)
# TODO: handle ^foo exclusions, comma separated lists
- COMPREPLY=( $(compgen -u -- "$cur") )
+ COMPREPLY=($(compgen -u -- "$cur"))
return
;;
esac
- if [[ "$cur" == [-+]* ]]; then
- COMPREPLY=( $(compgen -W '-h -a -A -b -c +c -C +d -d +D -D +f -f -F -g
+ if [[ $cur == [-+]* ]]; then
+ COMPREPLY=($(compgen -W '-h -a -A -b -c +c -C +d -d +D -D +f -f -F -g
-i -k -l +L -L +m -m +M -M -n -N -o -O -p -P +r -r -R -s -S -T -t
- -u -U -v -V +w -w -x -X -z -Z' -- "$cur") )
+ -u -U -v -V +w -w -x -X -z -Z' -- "$cur"))
return
fi
_filedir
} &&
-complete -F _lsof lsof
+ complete -F _lsof lsof
# ex: filetype=sh