cs190/labs/lab2/cs190lab2/madlib
2018-10-15 17:08:50 -04:00

18 lines
275 B
Bash
Executable File

#!/bin/bash
echo -n 'Enter an animal sound : '
read sound;
echo -n 'Enter a small animal : '
read small;
echo -n 'Enter a large animal : '
read large;
echo ""
echo ""
echo "Dog goes $sound,"
echo "$small goes meow,"
echo "Bird goes tweet,"
echo "and $large goes squeak."