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.
我正在使用 shell 在服务器上搜索带有 PHP 文件的特定字符串。字符串是
[...]
通常我会使用类似的东西:
grep "我的字符串" *.php
但它不适用于这些字符。我需要逃离他们吗?如何?
“[”、“.”和“]”是特殊字符,所以它们都需要转义。
grep \[\.\.\.\] *.php