Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我修改了第三方捆绑包,我想知道我所做的所有更改。什么linux命令可以给我?我想应该使用 diff 命令,但是如何?
假设您在 src/ 中获得了原始源代码,在 my_src/ 中获得了修改后的版本,您可以将 diff 与 --recursive 开关一起使用:
diff --recursive src my_src
尝试使用KDiff3diff之类的 GUI 替代品之一。
diff
您可能想尝试看看mtree。