rwx/sh/alias/grep.sh

10 lines
136 B
Bash
Raw Normal View History

# grep from current directory with regex
2025-07-06 19:20:15 +02:00
#= g
a__grep() {
grep \
--directories "recurse" \
--line-number \
--regexp \
"${@}"
}