- Cross-platform
- Fast
- No dependencies
- No configuration needed
- Handled through flags
- Capture shell output for easy testing.
See the getting started to get started.
Tested on Windows 11 and Ubuntu.
Soon.
Note
Requires gcc
git clone https://github.com/oonamo/creal.git
cd creal
make build
#strict
name: example
command: echo "this is an example"
output: "this is an example"
returncode: 0
---
#verbose
name: cat log file
command: cat ./weather.log
output: |
starting weather station...
could not connect to weather api, aborting.
|
returncode: 1
---