Linux: Compare Directory Structure Without Comparing Files
What is the best and simplest way to compare two directory structures without actually comparing the data in files? This works fine: diff -qr dir1 dir2_ But it’s really slow because it’s comparing …