在Bash中,您如何查看字符串是否不在数组中?

时间:2013-04-09 11:57:29

标签: bash shell scripting

我试图在不添加额外代码的情况下执行此操作,例如另一个for循环。我可以创建将字符串与数组进行比较的积极逻辑。虽然我想要负逻辑并且只打印不在数组中的值,但实际上这是为了过滤掉系统帐户。

我的目录中包含以下文件:

admin.user.xml 
news-lo.user.xml 
system.user.xml 
campus-lo.user.xml
welcome-lo.user.xml

如果该文件位于目录中,这是我用于执行肯定匹配的代码:

#!/bin/bash

accounts=(guest admin power_user developer analyst system)

for file in user/*; do

    temp=${file%.user.xml}
    account=${temp#user/}
    if [[ ${accounts[*]} =~ "$account" ]]
    then
        echo "worked $account";
    fi 
done

对于正确方向的任何帮助将不胜感激,谢谢。

1 个答案:

答案 0 :(得分:16)

你可以否定积极匹配的结果:

if ! [[ ${accounts[*]} =~ "$account" ]]

if [[ ! ${accounts[*]} =~ "$account" ]]

但是,请注意,如果$account等于“user”,您将获得匹配,因为它匹配“power_user”的子字符串。最好明确迭代:

match=0
for acc in "${accounts[@]}"; do
    if [[ $acc = "$account" ]]; then
        match=1
        break
    fi
done
if [[ $match = 0 ]]; then
    echo "No match found"
fi