Skip to content

Instantly share code, notes, and snippets.

@joshuashaffer
Created June 16, 2023 15:50
Show Gist options
  • Save joshuashaffer/32e862a28750622c8c1a594b32bc0ad6 to your computer and use it in GitHub Desktop.
Save joshuashaffer/32e862a28750622c8c1a594b32bc0ad6 to your computer and use it in GitHub Desktop.
Compute Total Amount of LFS
git lfs ls-files -s | rev | cut -d'(' -f1 | cut -c2- | rev | sed -e 's;TB;*1024*1024*1024+;' -e 's;MB;*1024*1024+;' -e 's;KB;*1024+;' -e 's;B;+;'|tr -d '\n' | rev | cut -c2- | rev | bc -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment