Exclude non list stuff
This commit is contained in:
parent
fccbbfaf4e
commit
1b8bdaccfe
|
@ -62,9 +62,11 @@ function remove_user_from_mailing_list {
|
|||
list_name=()
|
||||
while read -r listname; do
|
||||
i=$((i+1))
|
||||
W+=($i "$listname")
|
||||
list_name+=("$listname")
|
||||
echo $listname
|
||||
if [[ "$listname" != *']'* && "$listname" != *'['* ]]; then
|
||||
W+=($i "$listname")
|
||||
list_name+=("$listname")
|
||||
echo $listname
|
||||
fi
|
||||
done <<< "$USER_MAILING_LISTS"
|
||||
|
||||
i=$((i+1))
|
||||
|
|
Loading…
Reference in New Issue