1 - 如何获取属于特定用户的具有权限详细信息的所有文件和目录的列表。
2-如何获取文件或目录的所有详细信息,如所有者、组、权限等。
使用find -ls
:
find /some/path -user username -ls
To list all files including their permissions you can use ls -al
or to do so recursively ls -alr
You can then filter those results with grep to get particular ones (such as ones owned by a username)
ls -alR | grep ' username '
要查找属于特定用户的所有文件,请使用 find / -user username。然后,您可以对单个文件使用 ls -al。
find /path/to/dir/ -user <user> -name "*.dat"
也适用于 -group 选项来查找属于某个组的文件