Delete files recursively matching a name on the command line (OS X)
Solution 1:
% find UPMOST_RELEVANT_PATH -name ".shadowFileList" -delete
obviously, do the same for any other filename you want to throw away...
% find UPMOST_RELEVANT_PATH -name ".shadowFileList" -delete
obviously, do the same for any other filename you want to throw away...