1# $FreeBSD$ 2 3shname=${SH%% *} 4shname=${shname##*/} 5 6result=$(${SH} -c 'ps -p $$ -o comm=') 7test "$result" = "ps" || exit 1 8 9result=$(${SH} -c 'ps -p $$ -o comm=; :') 10test "$result" = "$shname" || exit 1 11