An open API service indexing awesome lists of open source software.

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

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