Search through all files in linux
Find files in linux
Solution using GREP
$> grep -ilR 'edma3' /usr/local/ti/*
-i == ignore case
-R == recursive directories
Another often used command for developers
$> grep --include=\*.{c,cpp,h} -rnw 'directory' -e "pattern"
-r is recursive
-n is line number and
-w stands match the whole wor
Recent Comments