#!/bin/zsh
##? Show all extensions in current folder structure.

find . -not \( -path '*/.git/*' -prune \) -type f -name '*.*' | sed 's|.*\.|\.|' | sort | uniq -c