How to search text in linux

How to search text in linux

You can use grep command in Linux  for example

grep -Ril "text-to-find-here" /
  • i stands for upper/lower case (optional in your case).
  • R stands for recursive.
  • l stands for “show the file name, not the result itself`.
This entry was posted in Linux. Bookmark the permalink.

Leave a Reply