rwx/sh/tui/grep.sh

13 lines
153 B
Bash
Raw Normal View History

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