Finding Files in a Git Bash Terminal

git-bash, gnu-findutils

Solution

Yes, it comes with the find utility. To recursively search for a file named "somefile.txt" starting from the current working directory, the following should work:

find . -name somefile.txt

Problem

I am currently using Git Bash to navigate file directories and edit files. I want to know if there's a command to search the current directory and all directories in it for a file name.

Original source