grep 命令无法正常工作

发布于 2024-09-28 11:19:12 字数 505 浏览 6 评论 0原文

我正在尝试从 File.txt 中提取值

116206K->13056K(118080K), 0.0879950 秒][终身:274796K->68056K(274892K), 0.2713740 秒] 377579K->68056K(392972K), [烫发 :17698K->17604K(17920K)], 0.3604630 秒]

我尝试提取

cat File.txt | grep 'Perm '| cut -d',' -f3|cut -d'(' -f2 |cut -d')' -f 1

这里出了什么问题。因为我正在尝试,我得到的

392972K 来自 377579K->68056K(392972K)

但我应该从 [Perm :17698K->17604K(17920K)] 17920

I am trying to extract the value from

in File.txt :

116206K->13056K(118080K), 0.0879950
secs][Tenured:274796K->68056K(274892K),
0.2713740 secs] 377579K->68056K(392972K), [Perm
:17698K->17604K(17920K)], 0.3604630
secs]

I have try to extract

cat File.txt | grep 'Perm '| cut -d',' -f3|cut -d'(' -f2 |cut -d')' -f 1

What is wrong here . because i am trying I am getting the

392972K which is from 377579K->68056K(392972K)

But i should get from [Perm :17698K->17604K(17920K)] 17920

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

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

发布评论

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

评论(2

咿呀咿呀哟 2024-10-05 11:19:12

一个快速修复方法是将 -f3 更改为 -f4,因为您需要的字段出现在第三个逗号之后

cat File.txt | grep 'Perm '| cut -d',' -f4|cut -d'(' -f2 |cut -d')' -f 1
                                        ^^

您还可以使用 sed 作为:

grep 'Perm' File.txt | sed -r 's/.*Perm :.*\((.*?)\).*/\1/'

工作链接

One quick fix, change -f3 to -f4 as the field you need appears after the 3rd comma:

cat File.txt | grep 'Perm '| cut -d',' -f4|cut -d'(' -f2 |cut -d')' -f 1
                                        ^^

You can also use sed as:

grep 'Perm' File.txt | sed -r 's/.*Perm :.*\((.*?)\).*/\1/'

Working link

有木有妳兜一样 2024-10-05 11:19:12
$ awk -vFS="->" '{gsub(/)].*|.*\(/,"",$5);print $5}' file1
17920K
$ awk -vFS="->" '{gsub(/)].*|.*\(/,"",$5);print $5}' file1
17920K
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文