The blog about containerisation, virtual machines and useful shell snippets and findings

recursive copy of the file with same name to the folder

find . -type f -name coverage.cov -exec bash -c 'cp {} $(pwd)/.coverage/cov/${RANDOM}.cov' \;