cha-rs

Crates.iocha-rs
lib.rscha-rs
version0.0.3
sourcesrc
created_at2023-11-07 21:53:11.441729
updated_at2023-11-07 22:11:21.891072
descriptionExtract specific characters from an input.
homepagehttps://github.com/jj-style/cha-rs
repositoryhttps://github.com/jj-style/cha-rs
max_upload_size
id1028464
size60,157
JJ Style (jj-style)

documentation

README

cha-rs

Crates.io Docs.rs CI

A simple library and app to extract specific characters from an input string. Useful for when you need to verify arbitrary characters of your long random password for your bank.
For example:

$ bw get password <mybank> | cha-rs -c 3 -c 11 -c 16
# 3 => C
# 11 => !
# 16 => p

(Please note, those characters are made up and do not belong to any of my passwords! :D)

Originally I created a pull request to Bitwarden (https://github.com/bitwarden/clients/pull/5042) to add this functionality to the command line app. But that feels a bit over-engineered and it is more inline with the Unix philosophy to create a small program that does one thing well, accepting text as its input, and writing text as its output. So here it is!

Installation

Cargo

  • Install the rust toolchain in order to have cargo installed by following this guide.
  • run cargo install cha-rs

From source

  • Build and install the executable from the source code.
git clone https://github.com/jj-style/cha-rs.git
cd cha-rs
cargo install --path .

Docker

docker pull ghcr.io/jj-style/cha-rs:latest
echo hello | docker run --rm -i ghcr.io/jj-style/cha-rs -c 1 -c 3 -c 5

Contribution

See CONTRIBUTING.md.

Notes

Project template generated using https://rust-github.github.io/.

Commit count: 18

cargo fmt