I need to delete files from a directory based on a search string. I tried:
grep -iL include * | rm -f
("include" is the string I was looking for)
This did not delete the files. The grep command...