@bai the unix command "grep" can help you search through files, so that you can find things that you are looking for. E.g. you can type
grep -i "vaporization" *F90
to search for this word in all the F90 files of a directory (-i means case insensitive). You can also try "grep -r" for a recursive search and "git grep" for similar functionality in git directories.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.