Skip to content

Instantly share code, notes, and snippets.

@vinaysshenoy
Last active February 2, 2022 03:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vinaysshenoy/bfd6310eeada9a2ddb64f285f1a957d3 to your computer and use it in GitHub Desktop.
Save vinaysshenoy/bfd6310eeada9a2ddb64f285f1a957d3 to your computer and use it in GitHub Desktop.
macOS list files by size
find . -type f -print0 | xargs -0 ls -l | sort -k5,5rn > ~/files.txt
find -E . -regex '.*\.(jpg|png)' -print0 | xargs -0 ls -l | sort -k5,5rn
find -E . -regex '.*\.(jpg|jpeg|png|hdr|exr)' -print0 | xargs -0 stat -f "%N,%z" > ./files.csv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment