rwx/shell/alias/grep.sh

8 lines
116 B
Bash
Raw Normal View History

2023-05-09 22:02:34 +02:00
# grep from current directory with regex
2023-05-14 16:28:45 +02:00
alias g="\
grep \
--directories \"recurse\" \
--line-number \
--regexp \
"