[**cowsay**]: https://en.wikipedia.org/wiki/Cowsay [**rust**]: https://www.rust-lang.org [**crates.io**]: https://crates.io # [**CATSAY**](#catsay) ```txt _-------------------_ | Hello, I'm a cat! | / ¯-------------------¯ / /l、 (゚、 。 7 |、゙ ~ヽ じし f\_, )ノ ``` My simple version of the [**cowsay**] program, but with a cat. You can run using the command line pipe or the default input, just like this: ```sh fortune | catsay # With pipe catsay "Hello, I'm a cat!" # default cli input ``` ## [**Installation**](#installation) First, if you don't have [**rust**] installed, install it. After installation follow the steps: You can install it directly using [**crates.io**] by running the commands below: ```sh cargo install catsay-rs ``` **or**, install from source code by running: ```sh git clone https://github.com/dreisss/catsay.git cd catsay cargo install ``` And verify if everything is ok by running the command: ```sh catsay -v ``` ## [**Commands**](#commands) Useful built-in commands in the program: - [**help**](#commands) Help command to the program. Using: ```sh catsay -h # or catsay --help ``` - [**version**](#commands) Display the program version. Using: ```sh catsay -v # or catsay --version ``` ## [**License**](#license) Licensed under either of - Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE)) - MIT license ([LICENSE-MIT](LICENSE-MIT)) at your option. ### **Licensing** Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.