John wrote:
On 10/11/2015 10:17 PM, steve harley wrote:
On 2015-10-11 12:41 , John wrote:
Turns out there's a version of Windiff available for Mac OS X.
http://windiff.software.informer.com/download-windiff-for-mac-osx/
i don't see a bonafide Mac Windiff there, but maybe my adblocker is
screwing with that website; there are several ways to compare file
hierarchies on a Mac, e.g. rsync
You can still compare the two directory trees. Windiff will tell you
what files are in each directory tree sub-directory & highlight the
differences, i.e. files and/or sub-directories that exist in one tree,
but not the other.
Larry described a different problem — there were multiple source cards,
and the files had been reorganized into subdirectories after transfer to
his computer; he didn't want to compare to the source cards, he wanted
to find gaps in the filename sequence regardless of subdirectory
it occurs to me this would be an opportunity to learn Lua (Lightroom's
scripting language)
I wonder if opening a terminal window and using the "ls -a -l [pathname]"
command and pipe it to a textfile would do the trick?
Like I said, I did it brute force, with all of the greps in a crude
shell script. rather than just cutting and pasting I should have used a
"for foo in ... do" construct, but it wasn't worth the effort of
figuring it out to save a little work.
I then just looked at the files that didn't have 1000 lines to see where
the holes were.
find . | grep LRC > k5tripfiles
cp k5tripfiles k5tripfiles.001
sort k5tripfiles.001 > k5tripfiles.002
grep ^30 k5tripfiles.002 > k5t_30
grep ^31 k5tripfiles.002 > k5t_31
grep ^32 k5tripfiles.002 > k5t_32
grep ^34 k5tripfiles.002 > k5t_34
grep ^35 k5tripfiles.002 > k5t_35
grep ^36 k5tripfiles.002 > k5t_36
grep ^37 k5tripfiles.002 > k5t_37
grep ^38 k5tripfiles.002 > k5t_38
grep ^39 k5tripfiles.002 > k5t_39
grep ^40 k5tripfiles.002 > k5t_40
grep ^41 k5tripfiles.002 > k5t_41
grep ^42 k5tripfiles.002 > k5t_42
grep ^44 k5tripfiles.002 > k5t_44
grep ^45 k5tripfiles.002 > k5t_45
grep ^46 k5tripfiles.002 > k5t_46
grep ^47 k5tripfiles.002 > k5t_47
grep ^48 k5tripfiles.002 > k5t_48
grep ^49 k5tripfiles.002 > k5t_49
wc k5t_*
--
Larry Colen [email protected] (postbox on min4est)
--
PDML Pentax-Discuss Mail List
[email protected]
http://pdml.net/mailman/listinfo/pdml_pdml.net
to UNSUBSCRIBE from the PDML, please visit the link directly above and follow
the directions.