I\'m having several occurrences of a specific string over several files in several lines obtained with grep.
grep
$ grep -rn --include=\"*.cpp\" mystring
Here is another way to do
$ grep -rn --include="*.cpp" mystring > op $ vim op
Then use gF and to come back to file op, use Ctrl + 6
gF