Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 HTML 文件,其中包含一堆指向整个数据库的链接。但是 URL 都写成:
<a href=/bw/examplefile.html>
当我尝试使用 wget 下载所有链接时,我使用 --base 参数来设置 URL,但它似乎并不能很好地工作。因此,与其摆弄我知道我不会再使用的东西,我只想知道如何在 emacs 中轻松地将 URL 添加到每个链接对象。
我在 Mac 上使用 Aquamacs。不确定这是否有太大的不同,但它可能是有用的信息。
I expect the following is what you want, to turn your relative URLs into absolute URLs (and add the attribute quotes, which is a little nicer).
M-x replace-regexp RET <a href=\(.+?\)> RET <a href="http://example.com\1"> RET
replace-regexp
<a href=\(.+?\)>
<a href="http://example.com\1">