日期:2025-07-16 14:50:45 人气:1

    A+
热门评论

linux使用sed命令如何替换两个字符串之间的字符串

root@localhost:~# echo enable="true",url="http://10.25.136.232",showSlider="true", enable=true,url=http://10.25.136.232,showSlider=true, root@localhost:~# echo enable="true",url="http://10.25.136.232",showSlider="true",|sed 's@url=".*",s@url="https:\/\/test.com",s@g' enable=true,url=http://10.25.136.232,showSlider=true,

阅读全文