diff --git a/README.md b/README.md index 8e7cf5d..0d46aa8 100644 --- a/README.md +++ b/README.md @@ -216,6 +216,8 @@ brew install cowsay ponysay fortune lolcat fortune | ponysay #or fortune | cowsay | lolcat +#or even both using this line +if [[ "$(($RANDOM%2))" == "0" ]]; then; fortune | ponysay; else fortune | cowsay | lolcat; fi; ``` 🎉