I would like to prepend some text to multiple files in bash, I've found this post that deals with prepend: prepend to a file one liner shell?
And I can find all the files I need to process using find:
find ./ -name "somename.txt"
But how do I combine the two using a pipe?