mirror of
https://github.com/opnsense/src.git
synced 2026-02-14 08:13:38 -05:00
10 lines
203 B
Text
10 lines
203 B
Text
# $FreeBSD$
|
|
|
|
shname=${SH%% *}
|
|
shname=${shname##*/}
|
|
|
|
result=$(${SH} -c 'ps -p $$ -o comm=')
|
|
test "$result" = "ps" || exit 1
|
|
|
|
result=$(${SH} -c 'ps -p $$ -o comm=; :')
|
|
test "$result" = "$shname" || exit 1
|