How to find all file extensions recursively from a directory? January 24, 2023 by Tarik How about this: find . -type f -name '*.*' | sed 's|.*\.||' | sort -u