比較2個文件的不一樣處

for item in `cat 2.txt`
do
    grep $item 1.txt >/tmp/test.txt
    if [ $? -ne 0 ];then
       echo "$item"
    fi
done
相關文章
相關標籤/搜索