From 0e8771d7407a71b15875a4e24eac931d04af4155 Mon Sep 17 00:00:00 2001 From: Azmaroth Date: Thu, 28 Dec 2017 12:01:54 +0100 Subject: [PATCH] chore: add even more fun in fun section --- README.md | 2 ++ 1 file changed, 2 insertions(+) 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; ``` 🎉