I need to remove all the files under /tmp that contain the "." or dot character
so I created the following
find /tmp -name "*.*" -delete please advice if this is the best approach to remove the files that contain "." ?
Now for another generic method:
find /tmp -type f -name '*.*' -print0 | xargs -0 rm -f
.findsupports-delete.