在locate的情况下,您可以使用xargs:
locate something | xargs ls -l
Xargs也可用于查找,但find具有-exec标志,允许使用查找结果优化进一步的操作;例如
find . -iname something -exec ls -l '{}' \;