Delete a file recursively from the commandline
# find Mac files $ sudo find folder-location/ -iname "._*" -exec rm {} \; # find Mac files #2 $ sudo find folder-location/ -iname ".DS_Store" -exec rm {} \;