In Linux, i have a folder which has 1K files. I need to know which all files doesn't have a string which I need. In this example, I need to know which all files doesn't have the string/word - apps
cd /path/to/folder
grep -rIL apps
This will list the files which doesn't have the string "apps" in it
cd /path/to/folder
grep -rIL apps
This will list the files which doesn't have the string "apps" in it