gpt4 book ai didi

linux - 在 Mac OS 中查找可写文件

转载 作者:IT王子 更新时间:2023-10-29 01:15:59 25 4
gpt4 key购买 nike

我想在我的目录中找到(递归地)可写文件。我的操作系统是 MacOS。

我试过:

find . -type  -writable

但是 shell 返回一个错误:

find: -type: -writable: unknown type

为什么会出现错误?有其他选择吗?

最佳答案

谁可以写?

如果你的意思是任何人都可写,你可以使用:

find . -type f -perm -0222

find . -type f -perm -ugo=w

如果你的意思是other可写,使用:

find . -type f -perm -0002

find . -type f -perm -o=w

关于linux - 在 Mac OS 中查找可写文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16062291/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com