#!/bin/sh echo -n "Enter your favourite colour: " read COLOUR echo -n "Enter your favourite animal: " read ANIMAL echo -n "Enter your favourite obstacle: " read OBJECT echo "Thank you for your input. One moment please..." sleep 3 echo "The quick $COLOUR $ANIMAL jumped over the $OBJECT" exit