14 我想知道ack_enabled not defined特定文件中是否存在all_defs.txt并返回某些内容,通过它我可以了解字符串是否存在。 谁能告诉我该怎么做? linux grep — 百万富翁 source
19 只需检查的退出代码grep。-q使它静音,!否定退出代码: if ! grep -q 'ack_enabled not defined' all_defs.txt ; then echo Not found. fi — Choroba source
7 更细的单线 下面的一线更加冗长: grep -q 'ack_enabled not defined' all_defs.txt && echo 'string found' || echo 'string not found' — Serge Stroobandt source