remove files from terminal code example
Example 1: terminal remove files starting with
find . -name 'name*' -exec rm {} \;
Example 2: delete all files with specific name ubuntu
find -type f -name '*text*' -delete
find . -name 'name*' -exec rm {} \;
find -type f -name '*text*' -delete