[Shell] Compare two files.

Posted buptqq

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[Shell] Compare two files.相关的知识,希望对你有一定的参考价值。

查找file1中每一行是否在file2中,若在输出到InRight.txt, 若不在输出到NotInRight.txt.

f1=$1
f2=$2

while read myline
do
grepR=`grep $myline $f2`
if [[ $grepR != "" ]]; then
echo $myline >>InRight.txt
elif [[ $grepR == "" ]]; then
echo $myline >>NotInRight.txt
fi
done < $f1

以上是关于[Shell] Compare two files.的主要内容,如果未能解决你的问题,请参考以下文章

compare two digital

[LeetCode] 844. Backspace String Compare_Easy tag: Stack **Two pointers

Django 类似的 url 模式问题

shell笔记two

1-12

notepad++ 安装compare插件