Bash
find all file Extension in Folder
find all file Extension in Folder
find . -type f | sed -rn 's|.*/[^/]+\.([^/.]+)$|\1|p' | sort -u