Skip to content

Instantly share code, notes, and snippets.

@slavanap
Created January 8, 2025 06:41
Show Gist options
  • Save slavanap/ed409a4a7915adb9a2969c196182bbe8 to your computer and use it in GitHub Desktop.
Save slavanap/ed409a4a7915adb9a2969c196182bbe8 to your computer and use it in GitHub Desktop.
Compute file sizes stats in $PWD
#!/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