From: Felix Fietkau Date: Wed, 30 Jul 2008 22:39:43 +0000 (+0000) Subject: functions.sh: add list_contains function for checking whether a list contains a speci... X-Git-Tag: reboot~25962 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=8c453b693ce2790ab8cd489cb19a90388242e799;p=oweals%2Fopenwrt.git functions.sh: add list_contains function for checking whether a list contains a specific element SVN-Revision: 12025 --- diff --git a/package/base-files/files/etc/functions.sh b/package/base-files/files/etc/functions.sh index f4af4a8573..01db77ce39 100755 --- a/package/base-files/files/etc/functions.sh +++ b/package/base-files/files/etc/functions.sh @@ -24,6 +24,15 @@ append() { eval "export ${NO_EXPORT:+-n} -- \"$var=\${$var:+\${$var}\${value:+\$sep}}\$value\"" } +list_contains() { + local var="$1" + local str="$2" + local val + + eval "val=\" \${$var} \"" + [ "${val%% $str *}" != "$val" ] +} + list_remove() { local var="$1" local remove="$2"