contents of file1: string2 string1 string3 contents of file2: string3 string1 Output: string2
有没有一个简单的脚本,我可以完成这个?
fgrep -x -f file2 -v file1
-x匹配整行
-f FILE从FILE获取模式
-v反转结果(显示不匹配)