我试图弄清楚为什么这个命令对我不起作用:
sed -n -e '/<a href=\(.*\)>/,/<\/a>/p' text.html
在 text.html 上,我们有类似...
<somestupidstuff> <a href='teste'> teste </a> </somestupidstuff>
所需的输出是:
<a href='teste'> teste </a>
但我得到的是:
<somestupidstuff> <a href='teste'> teste </a> </somestupidstuff>
也许我没有完全理解正则表达式。