mirror of
https://github.com/Erreur32/cheat.git
synced 2024-11-03 14:31:06 +01:00
84b5df508b
- apk: Alpine Linux package manager - gcc: GNU C Compiler - grep: Pattern matcher in files or pipes - vim: Vi IMproved
15 lines
175 B
Plaintext
15 lines
175 B
Plaintext
# 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
|