如何在文件中找不到grep列表字符串

时间:2014-04-10 09:12:26

标签: grep

我有一个文件中的字符串列表,并希望grep在另一个文件中搜索它们,并只打印未找到的字符串。有可能吗?

1 个答案:

答案 0 :(得分:1)

while read string
do
    if ! grep -q "$string" "$other_file"
    then echo "$string"
    fi
done < "$file"