rwx/sh/alias/grep.sh

10 lines
157 B
Bash
Raw Normal View History

2023-05-09 22:02:34 +02:00
# grep from current directory with regex
2024-11-19 09:17:14 +01:00
g() { sa__grep "${@}"; }
sa__grep() {
2024-11-16 15:07:23 +01:00
grep \
--directories "recurse" \
--line-number \
--regexp \
"${@}"
}