标签: grep
我有一个文件中的字符串列表,并希望grep在另一个文件中搜索它们,并只打印未找到的字符串。有可能吗?
答案 0 :(得分:1)
while read string do if ! grep -q "$string" "$other_file" then echo "$string" fi done < "$file"