我在第 130 页阅读了“Linux Bible 第 10 版”。练习 7:
创建一个/tmp/FILES目录。找到/usr/share 目录下所有大于5MB小于10MB的文件,复制到/tmp/FILES目录下。
我的命令看起来像find /usr/share -type f -size +5M -size -10M -exec cp {} /tmp/FILES \;
. 我像普通用户一样运行它并得到了
cp: error copying '/bla/bla' to '/lol/kek': Input/output error find: '/usr/share/bla-bla': Permission denied
之后我尝试以超级用户身份运行它并得到错误(没有Permission denied
):
cp: error copying '/bla/bla' to '/lol/kek': Input/output error
请向我解释一下,即使我以超级用户身份运行它,错误的原因是什么。谢谢你。
PS 请解释为什么带有 of 的命令-exec
应该为空{}
?