जवाबों:
diff -r
यह करेगा कि आप दोनों को बताए कि क्या कोई फाइल जोड़ी गई है या हटा दी गई है, और संशोधित की गई फाइलों में क्या बदलाव आया है।
यूनिक्स में डिफाइन कमांड का उपयोग फाइलों (सभी प्रकार) के बीच अंतर को खोजने के लिए किया जाता है। चूंकि डायरेक्टरी भी एक प्रकार की फाइल है, इसलिए डिफरेंट कमांड का उपयोग करके दो निर्देशिकाओं के बीच के अंतरों का आसानी से पता लगाया जा सकता है। अधिक विकल्प के लिए आप अपने यूनिक्स बॉक्स में आदमी का उपयोग करें।
-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)'.
और भी कई हैं।
Java