This commit is contained in:
Marc Beninca 2024-11-18 18:29:12 +01:00
parent e933c159c3
commit 04a86e40ed
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

8
sh/alias/grep.sh Normal file
View file

@ -0,0 +1,8 @@
# grep from current directory with regex
g() {
grep \
--directories "recurse" \
--line-number \
--regexp \
"${@}"
}