how to remove a file linux terminal code example
Example 1: delete all files with specific name ubuntu
find -type f -name '*text*' -delete
Example 2: remove all directrories in onde command hit
rm -R -- */
find -type f -name '*text*' -delete
rm -R -- */