summaryrefslogtreecommitdiff
path: root/combination
diff options
context:
space:
mode:
Diffstat (limited to 'combination')
-rwxr-xr-xcombination20
1 files changed, 20 insertions, 0 deletions
diff --git a/combination b/combination
new file mode 100755
index 0000000..6b1556e
--- /dev/null
+++ b/combination
@@ -0,0 +1,20 @@
+#!/usr/bin/env bash
+
+eval set -- "$1"
+
+PIZZAHUT="${1^^}"
+TACOBELL="${2^^}"
+
+N=$((1 + $RANDOM % 3))
+
+case $N in
+ 1)
+ echo "I'M AT THE COMBINATON" "$PIZZAHUT" "AND" "$TACOBELL"
+ ;;
+ 2)
+ echo "WE'RE AT THE COMBINATON" "$PIZZAHUT" "AND" "$TACOBELL"
+ ;;
+ 3)
+ echo "WE AT THE COMBINATON" "$PIZZAHUT" "AND" "$TACOBELL"
+ ;;
+esac