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.
我正在寻找一种简单的方法来比较当前 Joomla 安装代码与您从官方网站下载 Joomla 时获得的默认 Joomla 代码。
我进行了一些搜索,但找不到与我的问题相关的任何内容,我确实知道如何使用 bash 并比较 2 个文件,但是否可以比较 2 个目录并列出代码中的差异?例如,如果尝试查找添加到核心 Joomla 文件中的内容,这将非常有用。
diff的-r标志将通过目录递归。
-r
如果您只想知道哪些文件不同,您可以diff -qr /source/dir/ /target/dir/.
diff -qr /source/dir/ /target/dir/
请参阅差异手册页:http ://unixhelp.ed.ac.uk/CGI/man-cgi?diff