How to find / list all unique files across two directories?
find DIR1 DIR2 -type f -exec sha1sum '{}' \+ | sort | \
uniq -c --check-chars 40 | egrep '^ *1 ' | cut -c 51-
find DIR1 DIR2 -type f -exec sha1sum '{}' \+ | sort | \
uniq -c --check-chars 40 | egrep '^ *1 ' | cut -c 51-