https://github.com/rrrinav/meow
This is what 'cat'' is actually supposed to do.
https://github.com/rrrinav/meow
Last synced: about 1 month ago
JSON representation
This is what 'cat'' is actually supposed to do.
- Host: GitHub
- URL: https://github.com/rrrinav/meow
- Owner: Rrrinav
- License: mit
- Created: 2025-04-07T16:50:58.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2025-04-25T05:59:30.000Z (about 2 months ago)
- Last Synced: 2025-04-25T06:36:34.228Z (about 2 months ago)
- Language: C++
- Size: 146 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Meow
🐾 This is what cat is actually supposed to do.
A common cli utility as a wrapper over 'cat' command and some more features I personally need.
> [!WARNING]
> This is for linux only
> This is for my personal use. If it fits your use-case, use it.---
## Build Instructions
### Requirements
Any C++ compiler that supports C++23 standard.
I am using g++ (GCC) 15.0.1 & clang++ (Clang) 20.1.2, so take it as minimum requirement.### Building
**Fast**
```bash
$ g++ ./bld -o ./bld.cpp # Bootstrap build system
$ ./bld # run the build system
``````bash
$ git clone https://github.com/Rrrinav/meow # Clone repo
$ cd meow # Change directory
$ g++ ./bld -o ./bld.cpp # Bootstrap build system
$ ./bld # run the build system
```**Build options**
```bash
$ bld clean # delete build directory
$ bld run # run the executable
```bld will detect the compiler used to build it and use it to build the project too.