Answers for "search for a file in a folder linux"

1

linux search inside files

grep -Rl "search-term"
Posted by: Guest on October-07-2021
-2

how to search in a directory files in linux

# this will search all subdirectories for text (no case sensitivity)
grep -inR "your text" .
# Node: this command will search for text INSIDE Files, not file names
Posted by: Guest on March-25-2021

Code answers related to "search for a file in a folder linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language