grep -vFf 1.txt 2.txt 列印出2.txt中與1.txt有差異的資料。
#cat 1.txt 192.168.0.1 192.168.0.2 192.168.0.3
#cat 2.txt chenjiahe 192.168.0.1 192.168.0.2 192.168.0.5
#grep -vFf 1.txt 2.txt chenjiahe 192.168.0.5
注意:1.txt 與2.txt文件中不能包含空行,否則無法比較差異。
grep -vFf 1.txt 2.txt 列印出2.txt中與1.txt有差異的資料。
#cat 1.txt 192.168.0.1 192.168.0.2 192.168.0.3
#cat 2.txt chenjiahe 192.168.0.1 192.168.0.2 192.168.0.5
#grep -vFf 1.txt 2.txt chenjiahe 192.168.0.5
注意:1.txt 與2.txt文件中不能包含空行,否則無法比較差異。