How to grep '---' in Linux? grep: unrecognized option '---'

前端 未结 4 471
生来不讨喜
生来不讨喜 2020-12-10 11:28

I have a newly installed web application. In that there is a drop down where one option is ---. What I want to do is change that to All. So I navig

4条回答
  •  旧巷少年郎
    2020-12-10 12:07

    use grep's -e option, it is the right option for your requirement:

       -e PATTERN, --regexp=PATTERN
              Use PATTERN as the pattern.  This can be used to specify multiple search patterns, or to protect a pattern beginning with a hyphen (-).  (-e is specified
              by POSIX.)
    

    to protect a pattern beginning with a hyphen (-)

提交回复
热议问题