1
0
mirror of https://github.com/osmarks/ngircd.git synced 2024-12-12 09:50:29 +00:00

getpid.sh: use /bin/pidof when available

This commit is contained in:
Alexander Barton 2013-09-03 21:33:22 +02:00
parent aad92ceafe
commit e3a2a6c44d

View File

@ -1,10 +1,11 @@
#!/bin/sh
# ngIRCd Test Suite
# $Id: getpid.sh,v 1.5 2006/08/05 00:15:28 alex Exp $
# did we get a name?
[ $# -ne 1 ] && exit 1
[ -x /bin/pidof ] && exec /bin/pidof -s $@
# detect flags for "ps" and "head"
UNAME=`uname`
if [ $UNAME = "FreeBSD" ]; then