dotfiles/home/private_dot_config/zsh/functions/executable_allexts

5 lines
163 B
Bash

#!/bin/zsh
##? Show all extensions in current folder structure.
find . -not \( -path '*/.git/*' -prune \) -type f -name '*.*' | sed 's|.*\.|\.|' | sort | uniq -c