Extract tar.gz files in a folder then delete them

Categories:

find . -name '*.tar.gz' -exec tar -zxf {} \;
rm *.tar.gz;