LinuxText Processinggrep -r
grep

grep -rText Processing

grep -E

Recursively search directories.

Syntax

grep -r PATTERN DIR

Example

Enter values below to update the example in real time.

grep
config
rl
src
# 디렉토리 재귀 검색
grep -r "database_url" ./config/

# 일치하는 파일명만 출력
grep -rl "TODO" ./src/