📜  如果 grep 有输出,则 bash true - Shell-Bash 代码示例

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

代码示例1
if grep -q PATTERN file.txt; then
    echo found
else
    echo not found
fi