I have a huge list of IP address
in a file and I want to replace all the IP address to a specified string( Example : 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
.........
I tried replacing using 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
I couldn't achieve this. Can some one help me on how to replace the IP address with a specific string?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…