mirror of
https://github.com/opnsense/src.git
synced 2026-04-23 15:19:31 -04:00
9 lines
142 B
Text
9 lines
142 B
Text
|
|
# $FreeBSD$
|
||
|
|
|
||
|
|
key='must_contain_this'
|
||
|
|
{ r=`set -x; { : "$key"; } 2>&1 >/dev/null`; } 2>/dev/null
|
||
|
|
case $r in
|
||
|
|
*"$key"*) true ;;
|
||
|
|
*) false ;;
|
||
|
|
esac
|