mirror of
https://github.com/opnsense/src.git
synced 2026-02-14 16:23:25 -05:00
7 lines
153 B
Text
7 lines
153 B
Text
# $FreeBSD$
|
|
|
|
result=$(sh -c 'ps -p $$ -o comm=')
|
|
test "$result" = "ps" || exit 1
|
|
|
|
result=$(sh -c 'ps -p $$ -o comm=; :')
|
|
test "$result" = "sh" || exit 1
|