我根据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忽略了我的搜索字符串并输出了每个文件路径。
有人可以帮我吗?