#!/bin/sh # $FreeBSD$ base=`basename $0` echo "1..1" name="pgrep -P " ppid=$$ sleep=$(pwd)/sleep.txt ln -sf /bin/sleep $sleep $sleep 5 & sleep 0.3 chpid=$! pid=`pgrep -f -P $ppid $sleep` if [ "$pid" = "$chpid" ]; then echo "ok - $name" else echo "not ok - $name" fi kill $chpid rm -f $sleep