我正在尝试将我的shell脚本中的字符串从localhost:7101 / RPAS替换为我的HTML文件中的sound.mojo.com:5555/rpas。
${myDeployment} =<\/td><\td width="0">http://localhost:7101/RPAS<\/td>
我的输出应该是:
${myDeployment} =<\/td><\td width="0">http://sound.mojo.com:5555/rpas<\/td>
sed -e 's#>http://[^/]*/#>http://sound.mojo.com:5555\/rpas/#' tst.html
如果有办法,请告诉我。
答案 0 :(得分:0)
您可以使用此sed
命令:
sed 's#>http://[^/]*/#>http://sound.mojo.com:5555#' file
${myDeployment} =<\/td><\td width="0">http://sound.mojo.com:5555RPAS<\/td>