in reply to fs branch point - common parent dir

My favorite trick in cases like these is to create a symbolic link to the "directory far far away". Then run diff against the current directory (or files in current directory), and the symbolic link.

example:

$ pwd /home/user/src/perly-stuff $ ln -s /usr/local/lib/some/other/directory .otherdir $ diff -s ./ .otherdir/

-Scott