Skip to content

Instantly share code, notes, and snippets.

@meetmatt
Created November 3, 2016 13:33
Show Gist options
  • Star 12 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save meetmatt/d5dd2ecae37fbabb483dffba2d6dbec6 to your computer and use it in GitHub Desktop.
Save meetmatt/d5dd2ecae37fbabb483dffba2d6dbec6 to your computer and use it in GitHub Desktop.
Show installed packages reverse sorted by size in alpine
apk info | xargs -n1 -I{} apk info -s {} | xargs -n4 | awk '{print $4,$1}' | sort -rn
@meetmatt
Copy link
Author

@bgopalakrishnan1986 thanks, it looks much cleaner

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment