2024-06-18 12:47:28 +01:00
|
|
|
# term-owo-cpp
|
|
|
|
|
2024-06-18 13:16:02 +01:00
|
|
|
A simple C++ program that owofies text
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
2024-06-19 16:15:47 +01:00
|
|
|
### normal usage:
|
2024-06-18 13:16:02 +01:00
|
|
|
```bash
|
|
|
|
$ ./owo "Hello, world!"
|
|
|
|
Hewwo, wowld!
|
|
|
|
```
|
|
|
|
|
2024-06-19 16:15:47 +01:00
|
|
|
### from pipe / stdin:
|
|
|
|
```bash
|
|
|
|
$ echo "Hello, world!" | ./owo -p
|
|
|
|
Hewwo, wowld!
|
|
|
|
```
|
|
|
|
|
|
|
|
### from file:
|
|
|
|
```bash
|
|
|
|
$ ./owo -f file.txt
|
|
|
|
Hewwo, wowld!
|
|
|
|
```
|
2024-06-18 13:16:02 +01:00
|
|
|
|
2024-06-19 16:15:47 +01:00
|
|
|
### to file:
|
|
|
|
```bash
|
|
|
|
$ ./owo -o output.txt "Hello, world!"
|
|
|
|
```
|
|
|
|
|
|
|
|
## Building
|
2024-10-23 14:02:50 +01:00
|
|
|
```bash
|
|
|
|
$ make dirs build_unix
|
2024-10-23 11:06:49 +01:00
|
|
|
$ ./owo "Hello, world!"
|
2024-06-20 15:21:27 +01:00
|
|
|
hewwo, wowld!
|
2024-06-18 13:16:02 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
2024-06-19 16:15:47 +01:00
|
|
|
### archlinux:
|
2024-10-15 00:27:05 +01:00
|
|
|
#### Aur
|
2024-06-18 13:16:02 +01:00
|
|
|
```bash
|
|
|
|
$ git clone `https://git.alfieking.dev/acetheking987/term-owo-cpp.git`
|
|
|
|
$ cd term-owo-cpp
|
|
|
|
$ makepkg -si
|
2024-06-19 16:15:47 +01:00
|
|
|
```
|
2024-10-15 00:27:05 +01:00
|
|
|
#### Custom Repo
|
2024-11-26 12:57:52 +00:00
|
|
|
/etc/pacman.conf
|
|
|
|
```
|
|
|
|
[alfieking.dev]
|
|
|
|
Server = https://repo.alfieking.dev/x86_64
|
|
|
|
```
|
|
|
|
bash
|
2024-10-15 00:27:05 +01:00
|
|
|
```bash
|
|
|
|
$ pacman-key --recv-keys 1553B1410D80686C8D2A27338035E1AC0B1440DC
|
|
|
|
$ pacman-key --lsign-key 1553B1410D80686C8D2A27338035E1AC0B1440DC
|
|
|
|
$ pacman -Sy owo
|
|
|
|
```
|
2024-06-19 16:15:47 +01:00
|
|
|
|
|
|
|
### 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](LICENSE) file for details
|