diff options
-rwxr-xr-x | hug | 3 | ||||
-rwxr-xr-x | wave | 9 | ||||
-rwxr-xr-x | y | 13 |
3 files changed, 25 insertions, 0 deletions
@@ -0,0 +1,3 @@ +#!/usr/bin/env sh + +echo "*hugs* ${1}" @@ -0,0 +1,9 @@ +#!/usr/local/bin/lua + +math.randomseed(os.time()) +local rand=math.random(2) +if rand == 1 then + print("o/") +else + print("\\o") +end @@ -0,0 +1,13 @@ +#!/usr/bin/env bash + +N=$((1 + $RANDOM % 2)) + +case $N in + 1) + echo "y" + ;; + 2) + echo "HONK" + ;; +esac + |