Linux grep搜索字符串并忽略#Starting的行

时间:2014-08-07 07:17:30

标签: linux bash grep ignore

我根据grep命令得到了一个问题。

在我的PHP脚本中,我使用以下grep-command来搜索具有特定字符串的文件:

$result = "grep -l -H -r -i --include=*.cfg --exclude=commands.cfg 'host1' /test/";

我希望grep搜索speicfic字符串并忽略以#。

开头的每一行

我在电路板上找到了这个帖子:a link

当我尝试这个grep-command时:

$result = "grep -l -H -r -i --include=*.cfg --exclude=commands.cfg -v '^#' '$string' $path";

Grep忽略了我的搜索字符串并输出了每个文件路径。

有人可以帮我吗?

0 个答案:

没有答案