📜  grep 忽略二进制文件 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:49:49.902000             🧑  作者: Mango

代码示例1
# Process a binary file as if it did not contain matching data. 
# Equivalent to grep --binary-files=without-match
grep -I

# Example
find . | xargs grep -I "string-to-find";