So I want to find all files in a folder containing the public function
I want the list of all function names with their respective filenames.
Is this possible ?
Get all lines containing a keyword with their filenames
anjanesh
#1
0 Likes
jfcherng
#2
Not considering just use grep?
grep -R 'public function' FOLDER
Or ripgrep
rg -F 'public function' FOLDER
1 Like