Skip to content

Instantly share code, notes, and snippets.

@suda
Created December 6, 2012 03:15
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 suda/4221558 to your computer and use it in GitHub Desktop.
Save suda/4221558 to your computer and use it in GitHub Desktop.
Check how much space Retina files (@2x) use up on your Mac's HDD
#!/bin/bash
find /Applications/ -name "*@2x*" -exec ls -l {} \; | awk '{ total += $5 } END { total = total / 1024 / 1024; printf(" TOTAL SIZE OF RETINA FILES (MB): %4.2f\n", total)}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment