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 navigated to application folder and tried the below command.
grep -ir '---' .
I end up with below error.
grep: unrecognized option '---'
Usage: grep [OPTION]... PATTERN [FILE]...
Try `grep --help' for more information.
Given that I'm using
Distributor ID: Ubuntu
Description: Ubuntu 10.04.4 LTS
Release: 10.04
Codename: lucid
How to grep '---' in Linux ?
egrep
can also be used which is equivalent togrep -e --color=auto
but is provided as a precompiled binary. – Pussyfoot