mirror of
https://github.com/opnsense/src.git
synced 2026-04-21 14:17:06 -04:00
10 lines
148 B
Text
10 lines
148 B
Text
|
|
# $FreeBSD$
|
||
|
|
|
||
|
|
key='must contain this'
|
||
|
|
PS4="$key+ "
|
||
|
|
{ r=`set -x; { :; } 2>&1 >/dev/null`; } 2>/dev/null
|
||
|
|
case $r in
|
||
|
|
*"$key"*) true ;;
|
||
|
|
*) false ;;
|
||
|
|
esac
|