Created
June 27, 2021 10:45
-
-
Save nmilosev/b8094797ba8060767325955a0bb591b0 to your computer and use it in GitHub Desktop.
Alpine Linux 3.13 (2021) list installed packages sorted by size
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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