6 stable releases

new 2.1.4 Nov 30, 2024
2.1.3 Sep 16, 2024
2.0.0 Sep 16, 2024
1.0.0 Sep 16, 2024

#196 in Command line utilities

Download history 452/week @ 2024-09-14 43/week @ 2024-09-21 6/week @ 2024-09-28 1/week @ 2024-10-05 1/week @ 2024-10-12

676 downloads per month

MIT license

38KB
58 lines

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:

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:

environment.systemPackages = with pkgs; [
  meow
];

Or, if you are using Home Manager:

home.packages = with pkgs; [
  meow
];

From Cargo

To get the package directly from the Rust / Cargo archives, run:

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
  2. Clone this repository
  3. Build and run with cargo run or cargo run -- [OPTIONS]

Dependencies

~1.5–2.2MB
~41K SLoC