如何搜索带有引号和回车符的html长字符串



我需要递归地找到包含以下HTML的所有文件:

<html id="blx-5fb3c619e82a2863d6567c52-000000001" class="blx-5fb3c619e82a2863d6567c52">
<head>
<meta charset="utf-8">
<meta name="google" value="notranslate">

我正在尝试以下操作,但没有成功:

grep --include=*.html -FRnw "/path-to-dir" -e '<html id="blx-5fb3c619e82a2863d6567c52-000000001" class="blx-5fb3c619e82a2863d6567c52">n    <head>n    <meta charset="utf-8">n    <meta name="google" value="notranslate">'

我做错了什么?

使用GNU grep。去掉-F-n"/path-to-dir",加入-Poz

相关内容

  • 没有找到相关文章

最新更新