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,除了我想要转换为换行符 (/n) 的标签之外,我已经删除了所有标签。使用 AWK 或 SED 有什么快速简便的方法来做到这一点?我想 AWKSED 也是一种选择。
像这样的东西应该工作:
sed 's/<[^>]*>/\n/g' file
这意味着:用换行符替换所有以 开头的文本<,后跟未指定数量的非 字符>,以及以 结尾的字符。>
<
>