Write a bash script to delete all the files in the current directory that contains a word. code example
Example: delete all files with specific name ubuntu
find -type f -name '*text*' -delete
find -type f -name '*text*' -delete