📂 Add new directories: mise, uv, zb

This commit is contained in:
2026-04-11 23:55:34 +08:00
parent c94b899c72
commit fa0d6408dc
3 changed files with 124 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
# zb
## Meta
```yaml
name: zb
aliases: zerobrew
repo: https://github.com/lucasgelfond/zerobrew
description: A 5-20x faster experimental Homebrew alternative
```
## Install
```shell
curl -fsSL https://zerobrew.rs/install | bash
```
## Usage
```shell
zb install jq # install one package
zb install wget git # install multiple
zb bundle # install from Brewfile
zb bundle install -f myfile # install from custom file
zb bundle dump # export installed packages to Brewfile
zb bundle dump -f out --force # dump to custom file (overwrite)
zb uninstall jq # uninstall one package
zb reset # uninstall everything
zb gc # garbage collect unused store entries
zbx jq --version # run without linking
```