百度试题 题目下面()命令可以改变test目录中所有文件的权限。 A. $chmod–a755test B. $chmod–R755test C. $chmod–X755test D. chmod–o755test 相关知识点: 试题来源: 解析 B.$chmod–R755test 反馈 收藏
find /path/to/directory -type d -exec chmod +x {} \;其中,`/path/to/directory`是你要修改...
find . -type d -exec chmod a+x {} \;