在我的情况下,所有权属于 Macports,我已将其删除。但是,我发现仍有一些文件显然属于 Macports,我也想删除它们。
答案1
您可以使用find
以下工具来实现此目的:
find /path/to/search -user <username>
或者如果你想只列出当前目录中的文件而不列出子目录
find /path/to/search -maxdepth 1 -user <username>
让-ls
输出更像ls
find /path/to/search -user <username> -ls