rwx/sh/tui/grep.sh
2025-07-27 20:35:56 +02:00

12 lines
153 B
Bash

# grep
# grep from current directory with regex
#| grep
#= g
rwx_grep() {
grep \
--directories "recurse" \
--line-number \
--regexp \
"${@}"
}