dircmp for Linux

Former Unix programmers are probably familiar with the dircmp command for comparing two directories. Early versions of Linux didn’t have anything like it which was frustrating. In later versions of Linux, you can use the diff command to recursively compare directories.  It’s not exaclty like dircmp, but close enough:

diff -q -r . /otherDir

Comments are closed.