Skip to content

Instantly share code, notes, and snippets.

@francoisjacques
Forked from DDAZZA/bundle_sizes.sh
Created July 31, 2018 15:06
Show Gist options
  • Save francoisjacques/f2ce1b7ecdba575c1d190cad2ea47958 to your computer and use it in GitHub Desktop.
Save francoisjacques/f2ce1b7ecdba575c1d190cad2ea47958 to your computer and use it in GitHub Desktop.
List all bundled gems and their sizes
#!/bin/bash
# List the gems in the current bundle and their sizes
bundle list --paths | xargs du -s | sort -n | awk '{ print $2 $4 }' | xargs du -sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment