gpt4 book ai didi

linux - 如何通过数值约束过滤 UNIX stdout?

转载 作者:太空宇宙 更新时间:2023-11-04 09:00:48 26 4
gpt4 key购买 nike

我想在不使用 awk 的情况下获取标准输出流并对其进行过滤以仅保存大于 100 的值。我有一堆其他 unix 命令通过管道连接在一起,这导致了各种数字的 stdout 流。我想将任何大于 99 的数字传递到文件中。我想象这样的事情:

几个命令 | unix-tool 100 > stdout_that_is_>99

看起来这应该是微不足道的,而且我遗漏了一些东西。谢谢!

最佳答案

您可以使用带有正则表达式的 grep 来匹配任何 3 位以上的数字,例如:

command | grep '[1-9][0-9]\{2\}' >"stdout_that_is_>99"

这很容易适应任何数量级的工作。

关于linux - 如何通过数值约束过滤 UNIX stdout?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21861906/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com