term-owo-cpp/README.md
2024-10-23 11:06:49 +01:00

976 B

term-owo-cpp

A simple C++ program that owofies text

Usage

normal usage:

$ ./owo "Hello, world!"
Hewwo, wowld!

from pipe / stdin:

$ echo "Hello, world!" | ./owo -p
Hewwo, wowld!

from file:

$ ./owo -f file.txt
Hewwo, wowld!

to file:

$ ./owo -o output.txt "Hello, world!"

Building

$ cmake . -B build
$ cd build && make
$ make
$ ./owo "Hello, world!"
hewwo, wowld!

Installation

archlinux:

Aur

$ git clone `https://git.alfieking.dev/acetheking987/term-owo-cpp.git`
$ cd term-owo-cpp
$ makepkg -si

Custom Repo

$ pacman-key --recv-keys 1553B1410D80686C8D2A27338035E1AC0B1440DC
$ pacman-key --lsign-key 1553B1410D80686C8D2A27338035E1AC0B1440DC
$ pacman -Sy owo 

other distros:

download the binary from the releases page or build from source

License

This project is licensed under the MIT License - see the LICENSE file for details