gpt4 book ai didi

regex - egrep 字符串大小写

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:30:39 27 4
gpt4 key购买 nike

我必须从一个类似这样的文件名 temp 中进行 grep

Process             State  
BE_RP:1 [PL_2_3] Running
BE_RP:2 [PL_2_4] Running
BE_RP:3 [PL_2_5] Running
BE_RP:4 [PL_2_6] Running
FE_SCTP:0 [PL_2_3] Running
FE_SCTP:1 [PL_2_4] Running
BE_NMP:0 Not Running
OAM:0 Running

我需要写一个 egrep 语句来返回处于运行或未运行状态的进程数。

最佳答案

awk '/^OAM/ { next } /Not Running[ \t]*$/{s++} END {print s, NR-s-1}' foo.txt

打印 <running> <not running>

关于regex - egrep 字符串大小写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11607319/

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