📜  grep 文件中的文本 - Shell-Bash 代码示例

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

代码示例6
if grep -Fxq "pattern_to_search" file.txt; then #check if pattern string in file
  #do something
fi