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`.
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`.