4 lines
163 B
Bash
4 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
|