【Linux】ファイルを複数ディレクトリへコピー

Linuxで、ファイルを複数のディレクトへ同時にコピーしたいとき。

echo dir* | xargs -n 1 cp -v file

これで、ファイルfileを、dir1とかdir2とかdirが付いたディレクトリへ一気にコピーできる。