#!/bin/sh clear echo echo Hi! echo echo "Do you know what time it is? It is, at this very moment," date echo "I think it's high time for some cuddlin'! Yay! :-)" echo echo "Now, you have a choice. Would you prefer hugs, or cuddles?" echo "Or even perhaps something else? You can choose any on the" echo "following by selecting the appropriate letter:" echo "h - hugs p - spoddles" echo "c - cuddles m - smooches" echo "q - squeezes n - snuzzles" echo "s - snuggles a - custom affection!" echo echo "So what do you feel like today?" read affection case $affection in h|H) givetype=hug gives=hug ;; c|C) givetype=cuddle gives=cuddle ;; q|Q) givetype=squeeze gives=squeeze ;; s|S) givetype=snuggle gives=snuggle ;; p|P) givetype=spoddle gives=spoddle ;; m|M) givetype=smooche gives=smooch ;; n|N) givetype=snuzzle gives=snuzzle ;; a|A) echo echo "Okay, what are you in the mood for? Type it here in singular" echo "form, not plural (i.e. swuzzle):" read givetype gives=$givetype ;; *) echo echo "Okay, by default, you get hugs! :)" givetype=hug gives=hug ;; esac echo echo "Okay, "$givetype"s it is!" echo echo "To prevent loss of breath (since as we all know, breathing is good)," echo "you are limited to a maximum of 25 "$givetype"s at once." echo "How many "$givetype"s would you like?" read givenumber sleep 1 echo echo "Okay, here we go..." sleep 1 clear echo echo "Brace yourself!" sleep 1 clear echo echo "Here they come!" sleep 2 clear for giveno in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 do echo "Here is $gives #"$giveno": ***$gives!***" if [ $givenumber = $giveno ] then echo echo "There you go. Luv ya!" echo "*cuddle* bye-bye" echo exit 0 fi done