问题:我们有数百个文件夹,每个文件夹都有数百个图像。我们需要将前5个图像复制到目标文件夹中。下面是我设法构造的命令:
find . -name '000[0-5]*' -exec cp --parents {} /volume1/WORKING/Covers/disk6/africa{} \;
返回以下错误消息:
cp: with --parents, the destination must be a directory
我似乎找不到正确的修饰词。我遗漏了什么?谢谢你
fcg9iug31#
建议尝试:
cp $(find . -type f -name '000[0-5]*') /volume1/WORKING/Covers/disk6/africa
1条答案
按热度按时间fcg9iug31#
建议尝试: