mirror of
https://github.com/fmillion/docs.git
synced 2025-07-17 07:36:25 +00:00
6 lines
202 B
Markdown
6 lines
202 B
Markdown
# Alpine Linux shell-fu commands
|
|
|
|
# Display all packages along with size, sorted by size, largest last
|
|
|
|
apk info | xargs -n 1 apk info -s | paste -sd' \n' | awk '{ print $4 " " $1'} | sort -n
|