gpt4 book ai didi

linux - 使用 Grep 或 AWK 命令

转载 作者:太空宇宙 更新时间:2023-11-04 10:46:05 25 4
gpt4 key购买 nike

我有包含此文本信息的文件:

http://=
en.domain.com/registration.html#/?doitoken=1D7f1ad404-f84b-4a3b-8931=
-4f40b619730e



http://=
en.domain.com/registration.html#/?doitoken=5D8172f6e6-240f-42e6-8512=
-6d7f6bd61c2d



http://=
en.domain.com/registration.html#/?doitoken=8D8172f6e6-240f-42e6-8512=
-6d7f6bd61c2d

我如何在 linux bash 中使用 grep 或 awk 命令来做到这一点:

http://en.domain.com/registration.html#/?doitoken=1D7f1ad404-f84b-4a3b-8931-4f40b619730e
http://en.domain.com/registration.html#/?doitoken=5D8172f6e6-240f-42e6-8512-6d7f6bd61c2d
http://en.domain.com/registration.html#/?doitoken=8D8172f6e6-240f-42e6-8512-6d7f6bd61c2d

感谢您的回答!

最佳答案

awk 'BEGIN{FS="=\n"; RS=""; OFS=""} {print $1, $2, $3}' input_file

您还可以删除 OFS="" 并删除打印语句中的 ,

关于linux - 使用 Grep 或 AWK 命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33059472/

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