This command will find all files in and below the current directory and delete it based on the filename.
find . -name "file-to-find-and-delete.txt" -type f -delete
This command will find all files in and below the current directory and delete it based on the filename.
find . -name "file-to-find-and-delete.txt" -type f -delete