Fix getpid.sh to work on Apple A/UX again

This commit is contained in:
Alexander Barton 2012-09-27 00:19:31 +02:00
parent d8ee498a65
commit eba53f652c
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ UNAME=`uname`
if [ $UNAME = "FreeBSD" ]; then
PS_FLAGS="-a"; PS_PIDCOL="1"; HEAD_FLAGS="-n 1"
elif [ $UNAME = "A/UX" ]; then
PS_FLAGS="-ae"; PS_PIDCOL="1"; HEAD_FLAGS="-1"
PS_FLAGS="-af"; PS_PIDCOL="2"; HEAD_FLAGS="-1"
elif [ $UNAME = "GNU" ]; then
PS_FLAGS="-ax"; PS_PIDCOL="2"; HEAD_FLAGS="-n 1"
elif [ $UNAME = "Linux" ]; then