Find
Find files of size more than 1G
find . -type f -size +1G
find and delete
find /home -type f -size +1G -delete
find in all dir
find /path -iname 'yourstring*' -type f
find . -name 'mystring*'
find . -type f -size +1G
find /home -type f -size +1G -delete
find /path -iname 'yourstring*' -type f
find . -name 'mystring*'