Nifty little trick when you want to replace a single file in multiple directories.
$ find . -name README.txt -print0 | xargs -0 -I{} cp README.txt {}
This is a variation over the following:
Nifty little trick when you want to replace a single file in multiple directories.
$ find . -name README.txt -print0 | xargs -0 -I{} cp README.txt {}
This is a variation over the following: