mirror of
https://github.com/opnsense/src.git
synced 2026-02-14 00:04:14 -05:00
8 lines
142 B
Text
8 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
|