Set PS_PID to "ps uwwp" so we display only the process we're trying to
point out, and not the whole process table.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@25021
dc483132-0cff-0310-8789-
dd5450dbe970
if [ "x$PS_ALL" = "x" ]; then
if ps auxww >/dev/null 2>&1; then
PS_ALL="ps auxww"
- PS_PID="ps auxww"
+ PS_PID="ps uwwp"
elif ps -ef >/dev/null 2>&1; then
PS_ALL="ps -ef"
PS_PID="ps -fp"
else
PS_ALL="ps auxww"
- PS_PID="ps auxww"
+ PS_PID="ps uwwp"
echo "WARNING! Cannot auto-detect ps type, assuming BSD."
fi