I'm attempting to find a directory A that could be in a variable location and copy another directory B into the found directory. So, I'd like to find directory A, and copy Directory B into Directory A.
find -name "foo.bundle"; cp directory B into the found directory.
If there are multiple matching A directories, I want to copy B to each of them.
