#!/bin/bash

# The purpose of this shell was to help demonstrate 
#     redirecting standard output versus redirecting 
#     standard error.
#
# It has a command that does not work (no file BOO exists
#     in the current directory), so that an error message
#     is output to standard error, and a command that does
#     successfully output to standard output.
#
# by: Sharon Tuttle
# last modified: 9-19-12

cp BOO stuff
echo "Moooooo"