Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在我的目录中找到(递归)可写文件。我的操作系统是 MacOS。
我试过了:
find . -type -writable
但外壳返回错误:
查找:-type:-writable:未知类型
为什么我得到错误?有替代品吗?
可由谁写?
如果你的意思是任何人都可以写,你可以使用:
find . -type f -perm -0222
或者
find . -type f -perm -ugo=w
如果您的意思是可写 by other,请使用:
other
find . -type f -perm -0002
find . -type f -perm -o=w