| Crates.io | quiet-cli |
| lib.rs | quiet-cli |
| version | 0.0.5 |
| created_at | 2026-01-17 07:38:38.163297+00 |
| updated_at | 2026-01-17 15:35:17.266454+00 |
| description | Run commands silently. Show only stderr or exit code |
| homepage | |
| repository | https://gitea.com/miviodev/quiet |
| max_upload_size | |
| id | 2050096 |
| size | 22,821 |
🇬🇧 English version | 🇷🇺 Русская версия
This utility lets you suppress unnecessary output, but displays errors when they occur:
quiet gut clone # instead of git clone
Output:
[ERROR]: No such file or directory (os error 2)
In the latest version, I’ve also added error handling not only for shell-level issues (e.g., command not found), but also for errors within commands themselves:
quiet git lig # instead of git log
Output:
[ERROR]: git: 'lig' is not a git command. See 'git --help'.
The most similar commands are:
log
To install, you’ll need cargo:
cargo install quiet-cli
If you get Command 'quiet' not found, you need to add ~/.cargo/bin to your PATH:
echo "export PATH=\$HOME/.cargo/bin:\$PATH" >> ~/.bashrc # or ~/.zshrc, depending on your shell
You’ll also need cargo to build from source:
cargo build -r
The binary will be located in ./target/release/.