Skip to content

Instantly share code, notes, and snippets.

@nucliweb
Last active April 3, 2022 01:22
Show Gist options
  • Star 17 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save nucliweb/da7cff954032bdc685f1 to your computer and use it in GitHub Desktop.
Save nucliweb/da7cff954032bdc685f1 to your computer and use it in GitHub Desktop.
fortune | cowsay | lolcat

fortune | cowsay | lolcat

Install Brew

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

Install fortune

brew search fortune

Install cowsay

brew search cowsay

Install lolcat

sudo gem install lolcat

Run fortune | cowsay | lolcat

fortune | cowsay | lolcat

fortune-cowsay-lolcat

@kunthar
Copy link

kunthar commented Jul 15, 2020

#Random cows with lolcat
#Bash version for Macports installation

/opt/local/bin/fortune -s | /opt/local/bin/cowsay -f "$(ls /opt/local/share/cowsay/cows | /opt/local/bin/gshuf -n 1)" |  /opt/local/bin/lolcat

#Fish version

fortune -s | cowsay -f (ls /opt/local/share/cowsay/cows/ | gshuf -n 1)  | lolcat

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment