Skip to content

Instantly share code, notes, and snippets.

@BlazerYoo
Last active June 28, 2021 02:34
Show Gist options
  • Save BlazerYoo/20cebd9c91e28bcb894216161d476833 to your computer and use it in GitHub Desktop.
Save BlazerYoo/20cebd9c91e28bcb894216161d476833 to your computer and use it in GitHub Desktop.
Terminal calculate directory size
python -c "import os;print(sum(os.path.getsize(f) for f in os.listdir('.') if os.path.isfile(f)), 'bytes')"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment