When you execute
jeremy@home:/$DOG=happy; echo $DOG;
you get the output
happy
However, when you execute jeremy@home:/$sh -c "DOG=happy; echo $DOG;"
or even
jeremy@home:/$sh -c "DOG=happy; echo "$DOG";"
or
jeremy@home:/$sh -c "DOG=happy; echo \"$DOG\";"
or
jeremy@home:/$sh -c "DOG=happy; echo '$DOG';"
you get only a blank line. How is this so? How can I actually set a variable from inside a sh -c command?