functions.sh: add list_contains function for checking whether a list contains a specific element

SVN-Revision: 12025
This commit is contained in:
Felix Fietkau 2008-07-30 22:39:43 +00:00
parent 4d883da9bf
commit 8c453b693c

View file

@ -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"