| Crates.io | rscowsay |
| lib.rs | rscowsay |
| version | 0.1.0 |
| created_at | 2025-05-13 08:43:41.645947+00 |
| updated_at | 2025-05-13 08:43:41.645947+00 |
| description | A Rust implementation of cowsay |
| homepage | |
| repository | https://github.com/Taki-Ta/rscowsay.git |
| max_upload_size | |
| id | 1671574 |
| size | 4,781 |
A Rust implementation of the classic cowsay program.
rscowsay is a simple command-line utility that generates an ASCII art of a cow saying whatever message you provide. It's a Rust implementation of the popular Unix program cowsay.
cargo install rscowsay
git clone https://github.com/yourusername/rscowsay.git
cd rscowsay
cargo build --release
The binary will be available at target/release/rscowsay.
# Basic usage
rscowsay "Hello, World!"
# Output:
# -----------
# < Hello, World! >
# -----------
# \ ^__^
# \ (oo)\_______
# (__)\ )\/\
# ||----w |
# || ||
--help: Display help message--version: Display version information# Single word
rscowsay "Moo!"
# Multiple words
rscowsay "Hello from Rust!"
# Check version
rscowsay --version
This project is licensed under the MIT License - see the LICENSE file for details.