如何递归地从文件中移除可执行 (x) 位
这个简单的 shell 脚本将递归地从文件(不包括目录)中移除可执行位(chmod -x):
remove_exec_bit.sh
find . -type f -exec chmod -x {} \;Check out similar posts by category:
Linux
If this post helped you, please consider buying me a coffee or donating via PayPal to support research & publishing of new posts on TechOverflow