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.
我需要编写一个命令管道,它将显示对所有用户具有读取权限的所有非隐藏文件。我不知道为什么这不起作用:
find * -perm a=r -print
我没有得到任何输出,也不确定我哪里出错了。请帮忙。
你应该这样指定
寻找 。-type f -perm -a+x 或查找 . -type f -perm -a=x
注意 -
或者你也可以使用八进制
寻找 。-type f -perm -655
. 指定当前目录
您需要将其指定为:
find * -perm -a+r
注意a前面的破折号。