Using git bash I want to search for a file and then find a specific word in this file. How can I do that?
Asked
Active
Viewed 258 times
0
-
For finding a file - https://superuser.com/a/401499 – kiner_shah Dec 08 '21 at 07:02
-
1For searching a word in the file - https://stackoverflow.com/a/1416247/4688321 – kiner_shah Dec 08 '21 at 07:02
-
`grep -R` is usefull. [`grep --help`](https://linux.die.net/man/1/grep). – David Lukas Dec 08 '21 at 07:08