Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 13 years ago.
使用查找:
查找
find . -perm /u+x -execdir chmod a+x {} \;
Use find:
find
您可以使用 find 来获取所有这些文件:
find . -type f -perm -o+rx -print0 | xargs -0 chmod a+x
更新:添加 -print0 以保留文件名中的空格
You can use find to get all those files:
Update: add -print0 to preserve space in filenames
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(2)
使用
查找
:Use
find
:您可以使用 find 来获取所有这些文件:
更新:添加 -print0 以保留文件名中的空格
You can use find to get all those files:
Update: add -print0 to preserve space in filenames