我有一个shell脚本,其中我需要检查两个文件是否相同。我做了很多文件,在我的脚本diff命令似乎是性能瓶颈。
这里是行:
diff -q $dst $new > /dev/null if ($status) then ...
我相信cmp会停止在第一个字节的区别:
cmp --silent $old $new || echo "files are different"