Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lostsh/cowsay

some cow ... who say some things
https://github.com/lostsh/cowsay

c99 cowsa simple-program terminal-tool

Last synced: about 1 month ago
JSON representation

some cow ... who say some things

Awesome Lists containing this project

README

        

# cowsay
> Typical cowsay in c99

## Compile
```bash
gcc cow.c -o cowsay
```

## Execute
```bash
./cow Typical cowsay output!
```


## Debug compilation
```bash
gcc -g -std=c99 -Wall -pedantic -fsanitize=address cow.c -o cowsay && echo -e "[+]\tCompilation success." || echo -e "[-]\tCompilation exception."
```