标签: regex linux bash grep
如何在grep中使用regEx,以便检查我所寻找的是第一件事?我想要做的是在文件中找到单行注释,但我不想grep第http://path行,所以在线上不能有任何后果。
答案 0 :(得分:1)
$ echo $'http://www.example.com\n // single line comment' | grep "^ *//.*" // single line comment