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

Comments

Popular posts from this blog

endmenu in different file than menu?

A binary with debug symbols with the Android NDK

Multi Threading in Android