我有这样的html代码
<a href="/site/index.php/Something" title="Something">Something cool</a>, <a href="/site/index.php/Nice_Text" title="Nice Text">Nice Text</a>
some text
<a href="/site/index.php/Apple%27s_text" title="Apple's text">Apple's text</a>
我需要在链接中添加点(开始)和.html(结束)来获得这个:
<a href="./site/index.php/Something.html" title="Something">Something cool</a>, <a href="./site/index.php/Nice_Text.html" title="Nice Text">Nice Text</a>
some text
<a href="./site/index.php/Apple%27s_text.html" title="Apple's text">Apple's text</a>
我在玩 sed,但我不知道如何使用更改后的 url。诸如查找"/site/index.php/
和第一次出现"
以及在该"
放置之前.html
(或在变量之间)。
谢谢你。