How to delete hidden files in subdirectories
When developer uses a samba server on macOS, the cache files like .DS_Store or ._.DS_Store are created. At that time, if you want to delete this files, you can do it using following bash shell: $ find . -name ".DS_Store" -exec rm -f {} \; $ find . -name "._.DS_Store" -exec rm -f {} \;