I want to search files that does not contain a specific string.
I used -lv
but this was a huge mistake because it was returning all the files that contain any line not containing my string.
I knew what I need exactly is grep -L
, however, Solaris grep
does not implement this feature.
What is the alternative, if any?