note to self.
One day it’s finally time to know how to delete Apple Junk/Hidden Files out of an archive of 400 000 files before copying/moving them…
(oh and don’t try to copy/store them on NTFS at some point… /1)
find . -name '*.DS_Store' -type f -delete
find . -name '._*' -print >> outputfile.txt
etc
(Recursively into each subdirectory from the current one.)
edit: 1/ except with ‘rsync’, rsync is good, rsync works. ‘grsync’ is very practical also.
#notes