1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
# Meow
Print ASCII cats to your terminal!
This is a simple command-line tool to display cute little kitties :D
I love cats
## Usage
```
Usage: meow [OPTIONS]
Options:
-c, --count <COUNT> How many cats to print [default: 1]
-l, --literally Are you literally this cat?
-h, --help Print help
-V, --version Print version
```
## Installation
### Ubuntu / Debian / etc
This package is available through apt. Run:
```sh
sudo apt update
sudo apt install meow
```
Note: the Debian package is currently being rolled out and may not be available on all systems.
Currently available in: Ubuntu 25.04, Debian Testing.
### Nix / Nixos
Try the package out by running `nix-shell -p meow`.
If you want to add it to your configuration, you can add the following to your configuration:
```nix
environment.systemPackages = with pkgs; [
meow
];
```
Or, if you are using Home Manager:
```nix
home.packages = with pkgs; [
meow
];
```
### From Cargo
To get the package directly from the Rust / Cargo archives, run:
```sh
cargo install meow-cli
```
The binary will then be built to some directory that will be output to your command line.
## Building from source
1. Install Rust
1. Clone this repository
1. Build and run with `cargo run` or `cargo run -- [OPTIONS]`
|