使用 sed 搜索并替换文件中的 IP 地址
一直试图让它工作一段时间,但并没有真正得到它。 基本上,我有一个文件,其中的 IP 地址每天或多或少都会发生变化。该文件仅包含一个 ip 地址,而这就是我试图用我疯狂的 grep 替换的地址,以找到我当前的内部 ip。
我有这个
#!/bin/sh
newip=$(ifconfig | grep 0xfff | grep -Eo '([0-9]{1,3}\.){3}[0-9]{1,3}' | grep -v 255)
echo $newip
sed 's/*\.*\.*\.*/"$newip"/g' log.txt > logmod.txt
,但它不匹配和替换。 我不熟悉 sed,而且我也是正则表达式的初学者。
任何帮助都会很棒! 谢谢 :)
Been trying to get this working for a while and not really quite getting it.
Basically, I have a file with an ip address that changes more or less on a daily basis. The file only contains one ip address and this is the one I'm trying to replace with my crazy grepping to find my current internal ip.
I have this
#!/bin/sh
newip=$(ifconfig | grep 0xfff | grep -Eo '([0-9]{1,3}\.){3}[0-9]{1,3}' | grep -v 255)
echo $newip
sed 's/*\.*\.*\.*/"$newip"/g' log.txt > logmod.txt
but it's not matching and replacing.
I'm not familiar with sed and I am a beginner with regexps too.
Any help would be awesome!
Thanks :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果您的
sed
版本支持扩展正则表达式(-r
选项),您可以执行类似的操作(这与您在grep 中的操作类似)
声明)。另请注意$newip
位于单引号之外,以允许 shell 替换它。顺便说一句,此解决方案仍然匹配不代表 IP 地址的字符串。请参阅IP 地址下的此网站,了解更复杂的解决方案。
If your version of
sed
supports extended regular expressions (the-r
option), you could do something like this (which is similar to what you have in yourgrep
statement). Also note$newip
is outside the single quotes to allow the shell to replace it.BTW this solution still matches strings that do not represent IP addresses. See this site under IP Adresses for more complex solutions.
这仅验证四个十进制八位字节表示
所以这个会失败 016.067.006.200
(甚至有效但不是四个十进制八位组表示,而是八进制)
this validates only four decimal octet representation
so this one will fail 016.067.006.200
(even valid but not four decimal octet representation, but octal)
试试这个:
Try this: