mirror of
https://github.com/opnsense/src.git
synced 2026-02-21 08:50:22 -05:00
9 lines
191 B
Text
9 lines
191 B
Text
|
|
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
|