Created
January 8, 2025 06:41
-
-
Save slavanap/ed409a4a7915adb9a2969c196182bbe8 to your computer and use it in GitHub Desktop.
Compute file sizes stats in $PWD
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
LC_ALL=C find . -name '?*.*' -type f -printf '%b.%f\0' | LC_ALL=C gawk -F . -v RS='\0' ' | |
{s[$NF] += $1; n[$NF]++} | |
END { | |
PROCINFO["sorted_in"] = "@val_num_asc" | |
for (e in s) printf "%15d %4d %s\n", s[e]*512, n[e], e | |
}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment