0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00

chore(lib): update deprecated grep aliases (#11161)

This commit is contained in:
Nadhem 2022-10-03 16:59:49 +01:00 committed by GitHub
parent b93b67b844
commit 570158e464
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -24,8 +24,8 @@ else
if [[ -n "$GREP_OPTIONS" ]]; then if [[ -n "$GREP_OPTIONS" ]]; then
# export grep, egrep and fgrep settings # export grep, egrep and fgrep settings
alias grep="grep $GREP_OPTIONS" alias grep="grep $GREP_OPTIONS"
alias egrep="egrep $GREP_OPTIONS" alias egrep="grep -E $GREP_OPTIONS"
alias fgrep="fgrep $GREP_OPTIONS" alias fgrep="grep -F $GREP_OPTIONS"
# write to cache file if cache directory is writable # write to cache file if cache directory is writable
if [[ -w "$ZSH_CACHE_DIR" ]]; then if [[ -w "$ZSH_CACHE_DIR" ]]; then