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.
我知道如何使用 grep 在文件中搜索字符串
grep -Flr --include "*" 'string' files/
但是,我将如何搜索直角双引号 ( » ),因为该字符不会出现在终端中。
双角引号是 ASCII 代码 174 (<<) 和 175 (>>),如果您谈论的是 ANSI 字符集而不是 Unicode。
你可以试试
grep `echo "\256"` file
256 是 << 的八进制 ASCII 值。请注意,八进制值包含在反引号中。