summaryrefslogtreecommitdiff
path: root/commands/y
diff options
context:
space:
mode:
Diffstat (limited to 'commands/y')
-rwxr-xr-xcommands/y13
1 files changed, 13 insertions, 0 deletions
diff --git a/commands/y b/commands/y
new file mode 100755
index 0000000..db15c4b
--- /dev/null
+++ b/commands/y
@@ -0,0 +1,13 @@
+#!/usr/bin/env bash
+
+N=$((1 + $RANDOM % 2))
+
+case $N in
+ 1)
+ echo "y"
+ ;;
+ 2)
+ echo "HONK"
+ ;;
+esac
+