blob: 25a1a1e118af90300eb1cdf5922b684e1679fd6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# pwdx(1) completion -*- shell-script -*-
_pwdx()
{
local cur prev words cword
_init_completion || return
case $prev in
-h | --help | -V | --version)
return
;;
esac
if [[ $cur == -* ]]; then
local help='$(_parse_help "$1")'
[[ $help ]] || help=-V
COMPREPLY=($(compgen -W "$help" -- "$cur"))
else
_pids
fi
} &&
complete -F _pwdx pwdx
# ex: filetype=sh
|