I am using Dropbox, and I wind up with a number of files like:
prefs (home's conflicted copy 2009-07-20).js
What I would like to do is find all the "conflicted copy..." files and then compare each with its unconflicted version.
For example, the following command gives me the result:
$ find . -name "*onflict*" -exec ls -ld {} \;
-rw-r--r-- 1 eric eric 24203 2009-07-19 14:42 ./prefs (home's conflicted copy 2009-07-20).js
but I would like an output like:
-rw-r--r-- 1 eric eric 24429 2009-07-21 11:43 prefs.js
-rw-r--r-- 1 eric eric 24203 2009-07-19 14:42 prefs (home's conflicted copy 2009-07-20).js
and then I can decide what I want to do with the conflicted copy. Any ideas?