Find and remove files in bash
How to search files in bash script and delete them directly in a single command.
Bash command
This command will remove all files with name ".DS_Store" found on folder "/var/www/vhosts/" and subfolders.
find /var/www/vhosts/ -name .DS_Store -exec rm -f {} \;