单项选择题利用find查找 boot目录下大于300k并且必须是文件,拷贝到 opt,该如何操作()
A.find /boot -size +300k -type f -exec cp -r {}/opt :
B.find /boot -size +300k -type f -exec cp -r {}/opt \
C.find /boot -size +300k -type d -exec cp -r {}/opt ;
D.find /boot -size +300k -type f -exec cp -r {}/opt ;