bash – 我如何寻找反击?

前端之家收集整理的这篇文章主要介绍了bash – 我如何寻找反击?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
所以我试图在文件中找到反引号(`),所以我运行:
grep -irl '\`' ./*

这似乎可以返回每个文件……

我还能尝试什么?

我向大家道歉,你必须使用-I来忽略二进制文件.那些是被退回的文件.在我删除-l之前我没有意识到这一点,这表明结果本质上是二进制的.
grep -rlI '`' ./*

从手册页:

-I     Process a binary file as if it did not contain  matching  data;
          this is equivalent to the --binary-files=without-match option.
原文链接:https://www.f2er.com/bash/384897.html

猜你在找的Bash相关文章