blob: bf47ca044306193825ce1e6660fc40fe718ce132 (
plain)
1
2
3
4
5
6
7
8
9
|
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
|