标签: linux shell command-line
如何在不更改任何目录或子目录权限的情况下更改目录(和子目录)中所有文件的文件权限?
答案 0 :(得分:0)
使用find的示例:
find
find /path/to/dir/ -type f | xargs chmod 755