This commit is contained in:
pika 2025-05-20 17:29:13 +02:00
parent b0a62cdd42
commit faee540985

View file

@ -48,14 +48,16 @@ esac
1. Package Management: 1. Package Management:
`\_install pkg1 pkg2` - Installs packages using the correct package manager </br> `_install pkg1 pkg2` - Installs packages using the correct package manager </br>
`\_remove pkg1 pkg2` - Removes packages (CAUTION: no confirmation!) </br> `_remove pkg1 pkg2` - Removes packages (CAUTION: no confirmation!) </br>
`checkAndInstall pkg1 pkg2` - Checks if command exists, installs if missing `checkAndInstall pkg1 pkg2` - Checks if command exists, installs if missing
Example: Example:
```bash ```bash
_install neovim git _install neovim git
_remove nano
checkAndInstall curl wget checkAndInstall curl wget
``` ```