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

https://github.com/andrejkoller/countwords-rs

A clean and simple Rust word counter for the terminal.
https://github.com/andrejkoller/countwords-rs

cli rust word-counter

Last synced: 5 months ago
JSON representation

A clean and simple Rust word counter for the terminal.

Awesome Lists containing this project

README

          

## Short description

A simple and efficient **Word Counter CLI tool** written in Rust.
It analyzes text files and counts the number of words contained within.

## ✨ Features
- Count words from any text file
- Export counted words and frequencies to a **CSV file**
- Simple command-line interface using **Clap**

## 📦 Installation

Make sure you have [Rust](https://www.rust-lang.org/tools/install) installed.

```bash
git clone https://github.com/andrejkoller/countwords-rs.git
cd countwords-rs
cargo build --release
```

```bash
cargo run --
```

```bash
cargo run -- --output
```