https://github.com/realpuresalmon/cowsay
Simple cowsay program in perl.
https://github.com/realpuresalmon/cowsay
cowsay cowsay-clone perl
Last synced: 6 months ago
JSON representation
Simple cowsay program in perl.
- Host: GitHub
- URL: https://github.com/realpuresalmon/cowsay
- Owner: RealPureSalmon
- License: apache-2.0
- Created: 2024-11-15T21:46:25.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-11-17T10:22:30.000Z (11 months ago)
- Last Synced: 2025-03-26T18:22:19.617Z (6 months ago)
- Topics: cowsay, cowsay-clone, perl
- Language: Perl
- Homepage:
- Size: 20.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: LICENSE
Awesome Lists containing this project
README
Cowsay
======
This is just another cowsay ripoff to be honest... Cowsay is a thing that makes the cow... Say!
E.g if I were to run "cowsay.pl" with the flag "Hello World!", the program world print:______________
< Hello World! >
--------------
\ ^__^
\ (oo)\_______
(__)\ )\/\
||----w |
|| ||It also happens to include other cows with the "-f" flag:
#> ./cowsay.pl -f tux "Hello World!"
______________
< Hello World! >
--------------
\
\
.--.
|o_o |
|:_/ |
// \ \
(| | )
/'\_ _/`\
\___)=(___/Use "cowsay -l" to list all cowfiles:
#> ./cowsay.pl -l
Cow files in ./cows:
daemon default dragon koala meow moose sheep stegosaurus tux vaderUse "cowsay -e" to change eye graphic:
#> ./cowsay.pl -e "O " "I am a cyclops!"
_________________
< I am a cyclops! >
-----------------
\ ^__^
\ (O )\_______
(__)\ )\/\
||----w |
|| ||Requirements
------------
* https://learn.perl.org/installing/
* https://git-scm.com/downloads or https://github.com/cli/cli#installationInstallation
------------
To install, clone the repo:#> git clone https://github.com/ElisStaaf/cowsay ~/cowsay
OR
#> gh repo clone ElisStaaf/cowsay ~/cowsay
OPTIONALLY ADD TO PATH
#> echo "export PATH=\"\$PATH:$HOME/cowsay\"" >> "your/shell/rc"