tui-scripts/.aliases.txt

2 lines
273 B
Plaintext
Raw Permalink Normal View History

2024-03-29 07:23:10 +00:00
Report disk usage by file type: find . -type f -empty -prune -o -type f -printf "%s\t" -exec file --brief --mime-type '{}' \; | awk 'BEGIN {printf("%12s\t%12s\n", "bytes", "type")} {type = $2; a[type] += $1} END {for (i in a) printf("%12u\t%12s\n", a[i], i) | "sort -nr"}'