| Crates.io | codemonument_bx |
| lib.rs | codemonument_bx |
| version | 0.3.5 |
| created_at | 2024-10-25 11:56:56.147499+00 |
| updated_at | 2026-01-21 22:45:05.70057+00 |
| description | [DEPRECATED: Use `bx-cli` instead] Simple, cross-platform, and fast command aliases with superpowers. |
| homepage | |
| repository | https://github.com/codemonument/bx |
| max_upload_size | |
| id | 1422442 |
| size | 183,169 |
DEPRECATION NOTICE: The
codemonument_bxcrate has been renamed tobx-cli. Please update your installation:cargo install bx-cli
Simple, cross-platform, and fast command aliases with superpowers.
A fork of Bonnie with a shorter command name.
The simplest bx.toml (or bonnie.toml) configuration:
version = "0.3.2"
[scripts]
build = "echo Building"
test = "cargo test"
Run with:
bx build
bx test
cargo install bx-cli
Download pre-built binaries from the releases page for:
After downloading, move the binary to your PATH (e.g., /usr/local/bin on Linux/macOS) and make it executable:
chmod +x bx
sudo mv bx /usr/local/bin/
RUN curl -L https://github.com/codemonument/bx/releases/download/[VERSION]/bx-[OS]-amd64 -o /usr/local/bin/bx && chmod +x /usr/local/bin/bx
Replace [VERSION] with the version (e.g., v0.3.4) and [OS] with linux or musl.
bx looks for configuration in this order:
BX_CONF environment variablebx.toml in current directoryBONNIE_CONF environment variablebonnie.toml in current directoryFor full documentation on all features (subcommands, environment variables, shells, etc.), see the Bonnie documentation.
MIT - See LICENSE
Based on Bonnie by arctic_hen7.