Answers:
您可以通过-F选项使用grep。
-F, --fixed-strings PATTERN is a set of newline-separated fixed strings
-e
选项的重复来提供多个固定字符串。像这样:grep -F -e "fixed1" -e "fixed2" -e "fixed3" -e "fixed4"
。无需换行;)
fgrep
使用。
grep --include=\*.php -FRn -e "$$"
使用单仲裁给了我想要的结果:grep --include=\*.php -FRn -e '$$'
$
其他一些字符是特殊字符,在您按Enter键之后且grep
执行(或执行任何命令)之前,它们将被bash替换。您可以通过将bash括在单引号中来告诉bash保留所有字符(单引号除外)。如果您需要输入单引号,请这样做'I'\''m special'
这无论是fgrep
或grep -F
将不会做正则表达式。fgrep
等同于grep -F
但我宁愿不必担心参数,本质上是懒惰的:-)
grep -> grep
fgrep -> grep -F (fixed)
egrep -> grep -E (extended)
rgrep -> grep -r (recursive, on platforms that support it).
传递-F
给grep
。
grep
搜索文字字符串吗?” 而不是“是否有类似的东西grep
可以搜索文字字符串?” 平头螺丝刀可以安装飞利浦螺丝头,您知道吗;)