If you want to grep for fixed strings use `fgrep` or `grep -F` instead. If you want to use `grep` the meta-characters like `+` needs to be escaped; there are various possibilities for that, e.g. `c[+][+]`.
If you want to grep for fixed strings use `fgrep` or `grep -F` instead. If you want to use `grep` the meta-characters like `+` needs to be escaped; there are various possibilities for that, e.g. `c[+][+]`.