https://github.com/the-puppet-studios/rustichar
Rustichar is a cli tool made to check the occurrences of characters in a string
https://github.com/the-puppet-studios/rustichar
cargo char cli count program rust
Last synced: 5 months ago
JSON representation
Rustichar is a cli tool made to check the occurrences of characters in a string
- Host: GitHub
- URL: https://github.com/the-puppet-studios/rustichar
- Owner: The-Puppet-Studios
- License: gpl-3.0
- Created: 2024-10-09T23:11:55.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-10-10T03:07:45.000Z (over 1 year ago)
- Last Synced: 2025-10-22T13:27:55.704Z (8 months ago)
- Topics: cargo, char, cli, count, program, rust
- Language: Rust
- Homepage: https://crates.io/crates/rustichar
- Size: 16.6 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Rustichar
Rustichar is a program that checks how many of all the characters in a string there are
# Installation
Make sure you have rust and cargo installed and in your path
Then run `cargo install rustichar` in your terminal
Then you can run the rustichar command.
# Usage
Usage: `echo "hi" | rustichar` this will print something like:
```
h: 1
i: 1
newline: 1
```
It could be in a different order though.
To print in a hex format do the same command but with `-h` at the end
# Changelog
## 1.0.1
Added -h flag
## 1.0.0
Initial release