#!/bin/sh if [ $# -lt 3 ] then echo "Usage: ./sentence3 COLOUR ANIMAL OBJECT" exit fi echo "The quick $1 $2 jumped over the $3" exit