gpt4 book ai didi

bash - 将文件中的所有IP地址替换为指定的字符串

转载 作者:行者123 更新时间:2023-11-29 09:23:21 25 4
gpt4 key购买 nike

我在文件中有一个巨大的 IP 地址 列表,我想将所有 IP 地址替换为指定的字符串 (示例:X.X.X.X)

#Example.txt
1,1.1.1.1
2,10.10.10.10
3,5.5.5.5
4,6.6.6.6
.........

我尝试使用 sed

替换
$sed -e 's/[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}/x.x.x.x/g' example.txt

我无法做到这一点。有人可以帮助我如何用特定字符串替换 IP 地址吗?

最佳答案

你快到了!您所要做的就是转义重复大括号:

sed -e 's/[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}/x.x.x.x/g' test.txt

关于bash - 将文件中的所有IP地址替换为指定的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35276822/

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