Grep用于单行注释,但不包括http://example.com等内容

时间:2012-02-05 21:25:48

标签: regex linux bash grep

如何在grep中使用regEx,以便检查我所寻找的是第一件事?我想要做的是在文件中找到单行注释,但我不想grep第http://path行,所以在线上不能有任何后果。

1 个答案:

答案 0 :(得分:1)

$ echo $'http://www.example.com\n   // single line comment' | grep "^ *//.*"
   // single line comment