Câu trả lời:
diff -r
sẽ thực hiện việc này, cho bạn biết cả hai tệp đã được thêm vào hay bị xóa và những gì đã thay đổi trong các tệp đã được sửa đổi.
Bạn có thể sử dụng dircmp
?
Lệnh Diff trong Unix được sử dụng để tìm sự khác biệt giữa các tệp (tất cả các loại). Vì thư mục cũng là một loại tệp nên có thể dễ dàng nhận ra sự khác biệt giữa hai thư mục bằng cách sử dụng các lệnh khác nhau. Để có thêm tùy chọn, hãy sử dụng man diff trên hộp unix của bạn.
-b Ignores trailing blanks (spaces and tabs)
and treats other strings of blanks as
equivalent.
-i Ignores the case of letters. For example,
`A' will compare equal to `a'.
-t Expands <TAB> characters in output lines.
Normal or -c output adds character(s) to the
front of each line that may adversely affect
the indentation of the original source lines
and make the output lines difficult to
interpret. This option will preserve the
original source's indentation.
-w Ignores all blanks (<SPACE> and <TAB> char-
acters) and treats all other strings of
blanks as equivalent. For example,
`if ( a == b )' will compare equal to
`if(a==b)'.
và còn nhiều hơn thế nữa.
Java