2020-02-17 19:34:52 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
{
|
|
|
|
echo "# cowsay-cows"
|
|
|
|
echo ""
|
2021-05-26 20:50:48 +00:00
|
|
|
echo "cowfiles in the original spirit of cowsay, except that all of these are actually bovine"
|
|
|
|
echo ""
|
|
|
|
echo "Install using [Antigen](https://github.com/zsh-users/antigen)"
|
|
|
|
echo ""
|
|
|
|
echo "\`\`\`bash"
|
|
|
|
echo "antigen bundle millironx/cowsaycows"
|
|
|
|
echo "\`\`\`"
|
2020-02-17 19:34:52 +00:00
|
|
|
echo ""
|
|
|
|
echo "## Examples"
|
|
|
|
echo ""
|
2020-02-17 19:36:14 +00:00
|
|
|
} > README.md
|
2020-02-17 19:34:52 +00:00
|
|
|
|
|
|
|
cowsay_message() {
|
|
|
|
COW="$1"
|
|
|
|
MESSAGE="$2"
|
|
|
|
|
|
|
|
{
|
|
|
|
echo "### $COW"
|
|
|
|
echo ""
|
2021-05-26 20:50:48 +00:00
|
|
|
echo "\`\`\`shellsession"
|
|
|
|
echo "\$ cowsay -f $COW"
|
2020-02-17 19:34:52 +00:00
|
|
|
cowsay -f "$COW" "$MESSAGE"
|
|
|
|
echo "\`\`\`"
|
|
|
|
echo ""
|
2020-02-17 19:36:14 +00:00
|
|
|
} >> README.md
|
2020-02-17 19:34:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
cowthink_message() {
|
|
|
|
COW="$1"
|
|
|
|
MESSAGE="$2"
|
|
|
|
|
|
|
|
{
|
|
|
|
echo "### $COW"
|
|
|
|
echo ""
|
2021-05-26 20:50:48 +00:00
|
|
|
echo "\`\`\`shellsession"
|
|
|
|
echo "\$ cowthink -f $COW"
|
2020-02-17 19:34:52 +00:00
|
|
|
cowthink -f "$COW" "$MESSAGE"
|
|
|
|
echo "\`\`\`"
|
|
|
|
echo ""
|
2020-02-17 19:36:14 +00:00
|
|
|
} >> README.md
|
2020-02-17 19:34:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
cowsay_message bell "The hills are alive with the sound of moo-sic"
|
2021-05-26 20:50:48 +00:00
|
|
|
cowsay_message birdstale "Grandpa said there was a moral there, but you had to figure it out for yourself"
|
2020-02-17 19:34:52 +00:00
|
|
|
cowsay_message bull "Actually, I'm a bull"
|
2021-05-26 20:50:48 +00:00
|
|
|
{
|
|
|
|
echo "**BONUS**: aliased to \`bullsay\`"
|
|
|
|
echo ""
|
|
|
|
} >> README.md
|
|
|
|
cowsay_message compucow "The programmers number one excuse for slacking off: cow-pie-ling"
|
2020-02-17 19:34:52 +00:00
|
|
|
cowsay_message cownterfeit "The love of moo-lah is the root of all evil"
|
2021-05-26 20:50:48 +00:00
|
|
|
cowsay_message cowpooling "Maybe Al Gore will forgive us for all those methane emissions this way"
|
2020-02-17 19:34:52 +00:00
|
|
|
cowsay_message cowstruction "My favorite part is bull-dozing"
|
2021-05-26 20:50:48 +00:00
|
|
|
cowsay_message longhorn "I've been sent to spread the message: God blessed Texas!"
|
|
|
|
{
|
|
|
|
echo "**BONUS**: aliased to \`steersay\`"
|
|
|
|
echo ""
|
|
|
|
} >> README.md
|
2020-02-17 19:34:52 +00:00
|
|
|
cowsay_message papal "I forgive you, my calf"
|
|
|
|
cowsay_message pie "Nobody makes them like Aunt Aggie"
|
|
|
|
cowthink_message resting "Insert deep thoughts and ruminations here"
|
2021-05-26 20:50:48 +00:00
|
|
|
cowsay_message super "If Impossible is as good as beef, then Bizarro is as good as me"
|