Skip to content

Instantly share code, notes, and snippets.

@nmilosev
Created June 27, 2021 10:45
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 nmilosev/b8094797ba8060767325955a0bb591b0 to your computer and use it in GitHub Desktop.
Save nmilosev/b8094797ba8060767325955a0bb591b0 to your computer and use it in GitHub Desktop.
Alpine Linux 3.13 (2021) list installed packages sorted by size
apk info -e -s \* | xargs -n5 | awk '{print $4,$5,$1}' | sort -run > SIZES
cat SIZES | grep MiB
cat SIZES | grep KiB
rm SIZES
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment