Skip to content

Instantly share code, notes, and snippets.

@colinmcintosh
Created January 5, 2016 05:51
Show Gist options
  • Save colinmcintosh/eb3bf3dba246414af2d3 to your computer and use it in GitHub Desktop.
Save colinmcintosh/eb3bf3dba246414af2d3 to your computer and use it in GitHub Desktop.
Find average file size recursively on FreeBSD
find / -name '*' -type f -print0 | xargs -0 ls -l | awk '{ total += $5; count += 1}; END { print (total/count)/1024/1024 " GB" }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment