https://github.com/jimver/catsay
My first Rust CLI tool
https://github.com/jimver/catsay
cat cli rust useless
Last synced: about 1 year ago
JSON representation
My first Rust CLI tool
- Host: GitHub
- URL: https://github.com/jimver/catsay
- Owner: Jimver
- Created: 2018-10-15T11:52:37.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-11-20T16:42:51.000Z (over 2 years ago)
- Last Synced: 2025-02-26T19:52:03.474Z (over 1 year ago)
- Topics: cat, cli, rust, useless
- Language: Rust
- Homepage:
- Size: 74.2 KB
- Stars: 4
- Watchers: 3
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# catsay
[](https://travis-ci.org/Jimver/catsay)
[](https://ci.appveyor.com/project/Jimver/catsay)
[](https://build.snapcraft.io/user/Jimver/catsay)
This is a useless cli tool of a cat echoing what you say.
## Installation
If you have `snap` installed (Ubuntu 16.04 and up) you can simply install using:
`sudo snap install cat-say`
And run it like:
`cat-say hello`
If you don't have snap you can just get the latest binaries [here](https://github.com/Jimver/catsay/releases/latest)
## Operation
You can either provide your text:
- Like separate arguments
`catsay hello there`
- As a single string
`catsay "hello there"`
- As standard input
`echo "hello there" | catsay`
For help run either:
- `catsay -h`
- `catsay --help`
Note: when no argument is given (so just `catsay`) the program assumes the input will come from stdin so it will block until it receives an EOF (Ctrl+D)
## Build instructions
To build this project you need the Rust language installed:
`cargo build`
And to run it:
`cargo run hello there`
## TODOs
- Add tests
- Proper help message