find 命令本身不能直接根据特定用户查找文件
find
sudo find /path/to/search -type f -user username
这个命令会在指定的路径(/path/to/search)中查找属于特定用户(username)的文件。请将 /path/to/search 和 username 替换为实际的路径和用户名。
/path/to/search
username