_pnames: Add -s for producing (possibly) truncated names (RedHat: #744406)

pgrep and pkill actually expect these instead of the full names.
This commit is contained in:
Ville Skyttä 2014-11-10 22:36:49 +02:00
parent 9444a8742e
commit 52d8316c5c
2 changed files with 16 additions and 12 deletions

View File

@ -1051,6 +1051,7 @@ _pgids()
# This function completes on process names.
# AIX and SunOS prefer X/Open, all else should be BSD.
# @param $1 if -s, don't try to avoid truncated command names
[[ $OSTYPE == *@(solaris|aix)* ]] &&
_pnames()
{
@ -1059,17 +1060,20 @@ _pnames()
} ||
_pnames()
{
# FIXME: completes "[kblockd/0]" to "0". Previously it was completed
# to "kblockd" which isn't correct either. "kblockd/0" would be
# arguably most correct, but killall from psmisc 22 treats arguments
# containing "/" specially unless -r is given so that wouldn't quite
# work either. Perhaps it'd be best to not complete these to anything
# for now.
# Not using "ps axo comm" because under some Linux kernels, it
# truncates command names (see e.g. http://bugs.debian.org/497540#19)
COMPREPLY=( $( compgen -X '<defunct>' -W '$( command ps axo command= | \
sed -e "s/ .*//" -e "s:.*/::" -e "s/:$//" -e "s/^[[(-]//" \
-e "s/[])]$//" | sort -u )' -- "$cur" ) )
if [[ "$1" == -s ]]; then
COMPREPLY=( $( compgen -X '<defunct>' \
-W '$( command ps axo comm | sed -e 1d )' -- "$cur" ) )
else
# FIXME: completes "[kblockd/0]" to "0". Previously it was completed
# to "kblockd" which isn't correct either. "kblockd/0" would be
# arguably most correct, but killall from psmisc 22 treats arguments
# containing "/" specially unless -r is given so that wouldn't quite
# work either. Perhaps it'd be best to not complete these to anything
# for now.
COMPREPLY=( $( compgen -X '<defunct>' -W '$( command ps axo command= | \
sed -e "s/ .*//" -e "s:.*/::" -e "s/:$//" -e "s/^[[(-]//" \
-e "s/[])]$//" | sort -u )' -- "$cur" ) )
fi
}
# This function completes on user IDs

View File

@ -39,7 +39,7 @@ _pgrep()
return
fi
_pnames
_pnames -s
} &&
complete -F _pgrep pgrep pkill