diff options
Diffstat (limited to 'combination')
-rwxr-xr-x | combination | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/combination b/combination deleted file mode 100755 index 6b1556e..0000000 --- a/combination +++ /dev/null @@ -1,20 +0,0 @@ -#!/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 |