Comparing directrories using diff
diff -qr --exclude=".svn" --exclude=".git" --exclude="STATIC_LIBRARIES" dir1 dir2
q is for brief, which means output only if the files differ
r is for recursive since we are comparing directories.
we exclude certain directories using the exclude option
q is for brief, which means output only if the files differ
r is for recursive since we are comparing directories.
we exclude certain directories using the exclude option
Comments
Post a Comment