“find ... -exec sort”和“find ... -exec sort”之间的区别和“找到... |排序”
这两个命令有什么区别?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
第一个命令对按指定条件找到的每个文件运行
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 sayfind . -name "*.cpp" -exec sort {} \;
. This would be like runningsort a.cpp; sort b/c.cpp; ...
for every file matched.The second produces a list of
.cpp
files and then pipes the list throughsort
producing a sorted list of cpp files.第一个对找到的每个
.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 onstdin
.The second sorts the list of all the
.cpp
filenames.第一个读取每个
*.cpp
文件的标准输入,find
查找并排序您可能输入的每一行。第二个对
find
找到的*.cpp
文件列表进行排序。The first one reads stdin for each of the
*.cpp
filesfind
finds and sorts every line you might be feeding it.The second one sorts the list of the
*.cpp
filesfind
finds.