Error when running this command, i think the command is clear to get the idea.
cp file.txt /folder/*/*/*/file.txt
Error when running this command, i think the command is clear to get the idea.
cp file.txt /folder/*/*/*/file.txt
You need a loop to do that:
for dir in /folder/*/*/*/; do cp file.txt "$dir"; done