how to delete something from terminal code example
Example 1: delete all files with specific name ubuntu
find -type f -name '*text*' -delete
Example 2: terminal delete fle
rm MyFile.rtf
find -type f -name '*text*' -delete
rm MyFile.rtf