mirror of
https://github.com/Erreur32/cheat.git
synced 2024-11-13 23:51:17 +01:00
84b5df508b
- apk: Alpine Linux package manager - gcc: GNU C Compiler - grep: Pattern matcher in files or pipes - vim: Vi IMproved
14 lines
175 B
Text
14 lines
175 B
Text
# Install a package
|
|
apk add $package
|
|
|
|
# Remove a package
|
|
apk del $package
|
|
|
|
# Update repos
|
|
apk update
|
|
|
|
# Upgrade all packages
|
|
apk upgrade
|
|
|
|
# Find a package
|
|
apk search $package
|