“find ... -exec sort”和“find ... -exec sort”之间的区别和“找到... |排序”

发布于 2024-12-17 09:14:21 字数 108 浏览 0 评论 0原文

这两个命令有什么区别?

find . -name "*.cpp" -exec sort \;
find . -name "*.cpp" |  sort

What's the difference between these two commands?

find . -name "*.cpp" -exec sort \;
find . -name "*.cpp" |  sort

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

┾廆蒐ゝ 2024-12-24 09:14:22

第一个命令对按指定条件找到的每个文件运行 sort (不带参数)。这(正如马特在他的回答中指出的那样)是毫无用处的。对每个文件运行排序的方法是说 find 。 -name "*.cpp" -exec sort {} \;.这就像运行 sort a.cpp;对b/c.cpp进行排序; ... 每个匹配的文件。

第二个生成 .cpp 文件列表,然后通过 sort 管道该列表,生成 cpp 文件的排序列表。

The first command runs sort (without an argument) for every file which is found by the criteria specified. This is (as Mat has pointed out in his answer) is quite useless. The way to get sort to run for every file is to say find . -name "*.cpp" -exec sort {} \;. This would be like running sort a.cpp; sort b/c.cpp; ... for every file matched.

The second produces a list of .cpp files and then pipes the list through sort producing a sorted list of cpp files.

别挽留 2024-12-24 09:14:22

第一个对找到的每个 .cpp 文件运行 sort,不带任何参数。这是毫无用处的,排序将等待 stdin 上的输入。

第二个对所有 .cpp 文件名的列表进行排序。

The first one runs sort without any argument for each .cpp file found. That's pretty useless, sort will be waiting for input on stdin.

The second sorts the list of all the .cpp filenames.

半窗疏影 2024-12-24 09:14:22

第一个读取每个 *.cpp 文件的标准输入,find 查找并排序您可能输入的每一行。

第二个对 find 找到的 *.cpp 文件列表进行排序。

The first one reads stdin for each of the *.cpp files find finds and sorts every line you might be feeding it.

The second one sorts the list of the *.cpp files find finds.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文