Risposte:
diff -r
lo farà, dicendoti se dei file sono stati aggiunti o eliminati e cosa è cambiato nei file che sono stati modificati.
Potresti usare dircmp
?
Il comando Diff in Unix viene utilizzato per trovare le differenze tra i file (tutti i tipi). Poiché anche la directory è un tipo di file, le differenze tra due directory possono essere facilmente individuate utilizzando i comandi diff. Per ulteriori opzioni usa man diff sulla tua scatola unix.
-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)'.
E ce ne sono molti altri.
Java