Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/lostsh/cowsay
- Owner: lostsh
- Created: 2021-10-06T14:16:53.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-05-10T15:50:56.000Z (8 months ago)
- Last Synced: 2024-05-14T14:39:27.936Z (7 months ago)
- Topics: c99, cowsa, simple-program, terminal-tool
- Language: C
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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."
```