How do you use grep to find occurrences of strings in a directory, when the string to search for is '../images/'? This is the command as I normally use it
grep -H -r 'string to find' /path/to/dir
Some search characters cause problems, and evidently '../' is among those.
I tried various combinatrions of \ in front of some characters This is a search I need to do frequently, to find references in css files that are pointing to images in the folder next door.