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