Delete all your files with the extension .tmp in current folder:
On Windows:
del *.tmp
On Mac:
rm -rf ./*.tmp
Delete all your files with the extension .tmp in current folder
On Windows:
del /s *.tmp
On Mac:
find . -name '*.tmp' -delete
Want to be a Linux expert? Come and join this Linux course
Do check out the video below