[go: up one dir, main page]

File: README.md

package info (click to toggle)
rust-meow-cli 2.1.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 888 kB
  • sloc: makefile: 4
file content (103 lines) | stat: -rw-r--r-- 2,233 bytes parent folder | download
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# Meow


Print ASCII cats to your terminal!

This is a simple command-line tool to display cute little kitties :D

I love cats

[![Number of repositories](https://repology.org/badge/tiny-repos/meow-ascii-cats.svg)](https://repology.org/project/meow-ascii-cats/versions)
<br />
[![latest packaged version(s)](https://repology.org/badge/latest-versions/meow-ascii-cats.svg)](https://repology.org/project/meow-ascii-cats/versions)
<br />
[![Packaging status](https://repology.org/badge/vertical-allrepos/meow-ascii-cats.svg)](https://repology.org/project/meow-ascii-cats/versions)


## 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]`

## Packaging shenanigans

The goal of this package is to eventually be in every Linux package repository and more (who doesn't like cats?)
Current status:

- [x] NixOS
- [x] Debian Stable
- [x] Ubuntu
- [ ] AUR
- [ ] Fedora
- [ ] EPEL
- [ ] Homebrew
- [ ] WinGet
- [ ] Extras
  - [ ] Gentoo
  - [ ] Alpine
  - [ ] OpenBSD
  - [ ] FreeBSD
  - [ ] openSUSE

## Credits

- Cats
- Meowing
- [How to exit vim](https://stackoverflow.com/questions/11828270/how-do-i-exit-the-vim-editor)