Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gozeloglu/wounter
Word counter CLI tool written in Go.
https://github.com/gozeloglu/wounter
cli go golang terminal tool
Last synced: 5 days ago
JSON representation
Word counter CLI tool written in Go.
- Host: GitHub
- URL: https://github.com/gozeloglu/wounter
- Owner: gozeloglu
- License: mit
- Created: 2023-09-22T13:11:30.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-23T14:29:36.000Z (about 1 year ago)
- Last Synced: 2024-04-14T03:38:39.980Z (7 months ago)
- Topics: cli, go, golang, terminal, tool
- Language: Go
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# wounter
Wounter is a CLI tool for counting words in a given string. You need to pass the string in quotes or double quotes.
## Install
```shell
go install github.com/gozeloglu/wounter@latest
```## Run
```shell
wounter "Example string for counting."
```As another option, you can pass file path to count words.
```shell
wounter --path example.txt
```Output will be as follows:
```shell
============================
Word count: 4
============================
```## LICENSE
[MIT](LICENSE)