Skip to content

Instantly share code, notes, and snippets.

@unfo
Created October 9, 2013 11:39
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 unfo/6899899 to your computer and use it in GitHub Desktop.
Save unfo/6899899 to your computer and use it in GitHub Desktop.
Simple summation of file sizes
#!/bin/bash
# Example: find /path/ -type f -mtime +5 | xargs ls -l | sumls
awk '{ sum += $5 } END { print "total: " (sum / 1024 / 1024) " MB" } '
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment