Quantcast
Channel: Programming – Ben Lobaugh Online
Viewing all articles
Browse latest Browse all 32

Count file types by extension

$
0
0

Retrieve a list of all files, by extension, and display a count of them.

find . -type f -name '*.*' -not -name '.*' | sed -Ee 's,.*/.+\.([^/]+)$,\1,' | sort | uniq -ci | sort -n

Viewing all articles
Browse latest Browse all 32

Latest Images

Trending Articles





Latest Images