Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aneeshdurg/compy
https://github.com/aneeshdurg/compy
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/aneeshdurg/compy
- Owner: aneeshdurg
- Created: 2020-05-01T17:05:01.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-05-06T00:21:18.000Z (over 4 years ago)
- Last Synced: 2024-11-18T19:46:35.674Z (about 2 months ago)
- Language: Rust
- Size: 20.5 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Compy - Shell agnostic command completion
![Rust](https://github.com/aneeshdurg/compy/workflows/Rust/badge.svg)
[![](http://meritbadge.herokuapp.com/compy)](https://crates.io/crates/compy)
[![Docs](https://docs.rs/compy/badge.svg)](https://docs.rs/compy)## A rust implementation of Bash's compgen
`compy` is a shell agonstic re-implementation of bash's `compgen`.Since one of the
goals is to be shell agnostic, certain `compgen` features like `-F` and some of
it's actions like `arrayvar` are omitted.The project is split into a binary and a library so that `compy` can be used in
other projects.## Building and Installing
Run `cargo build` to build the project and `cargo install --path .` to install it.