Compare two directory trees.

diff <(cd dir1 && find | sort) <(cd dir2 && find | sort)
This uses Bash's "process substitution" feature to compare (using diff) the output of two different process pipelines.

35
By: mbirk
2009-05-21 04:44:29

2 Alternatives + Submit Alt

What Others Think

Very nice! Thanks!
DaveQB · 869 weeks and 5 days ago
Hi, take a look to diff man page : diff -a -q -r dir1 dir2
sputnick · 867 weeks and 6 days ago
My command only compares the file file *names* -- not the contents of the file (like your "diff" command does).
mbirk · 844 weeks and 4 days ago
Very nice, thanks. Here's a possible improvement (shorter to type): diff <(find dir1 | sort) <(find dir2 | sort)
dserodio · 692 weeks and 6 days ago
Nevermind, my "improvement" is broken :)
dserodio · 692 weeks and 6 days ago
@dserodio your command works fine if you use a full path for your directories
linuxrawkstar · 541 weeks and 6 days ago
@linuxrawkstar No, in that case find will print the full path and diff will report every line as not matching. The point of using relative directories and the cd command is for diff to filter out the common (relative) paths.
mbirk · 541 weeks and 6 days ago

What do you think?

Any thoughts on this command? Does it work on your machine? Can you do the same thing with only 14 characters?

You must be signed in to comment.

What's this?

commandlinefu.com is the place to record those command-line gems that you return to again and again. That way others can gain from your CLI wisdom and you from theirs too. All commands can be commented on, discussed and voted up or down.

Share Your Commands



Stay in the loop…

Follow the Tweets.

Every new command is wrapped in a tweet and posted to Twitter. Following the stream is a great way of staying abreast of the latest commands. For the more discerning, there are Twitter accounts for commands that get a minimum of 3 and 10 votes - that way only the great commands get tweeted.

» http://twitter.com/commandlinefu
» http://twitter.com/commandlinefu3
» http://twitter.com/commandlinefu10

Subscribe to the feeds.

Use your favourite RSS aggregator to stay in touch with the latest commands. There are feeds mirroring the 3 Twitter streams as well as for virtually every other subset (users, tags, functions,…):

Subscribe to the feed for: