From a55893e7a16403190278c9c2dbdcd70249b84bac Mon Sep 17 00:00:00 2001 From: DarkElfMagic Date: Mon, 12 Dec 2022 19:23:23 -0600 Subject: [PATCH] random startup message built for fish, should be compatible with other shells --- rndstartupmsg.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 rndstartupmsg.sh diff --git a/rndstartupmsg.sh b/rndstartupmsg.sh new file mode 100755 index 0000000..062649d --- /dev/null +++ b/rndstartupmsg.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +# For use in fish(1) startup config or as MOTD + +RNDMSG="Hello, World! +Jello! +L + Ratio" + +printf "%s" "$RNDMSG" | shuf -n 1