rwx/sh/alias/grep.sh

10 lines
161 B
Bash
Raw Normal View History

2023-05-09 20:02:34 +00:00
# grep from current directory with regex
2024-11-18 17:29:57 +00:00
g() { sh_a__grep "${@}"; }
sh_a__grep() {
2024-11-16 14:07:23 +00:00
grep \
--directories "recurse" \
--line-number \
--regexp \
"${@}"
}