1
0
mirror of https://github.com/fmillion/docs.git synced 2025-07-17 07:36:25 +00:00

add alpine cheatsheet

This commit is contained in:
fmillion
2019-07-06 10:37:54 -05:00
parent 7161ca15c7
commit a08ff315cb

5
Alpine.md Normal file
View File

@ -0,0 +1,5 @@
# 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