Skip to content

Commit

Permalink
app-shells/bash: Replace egrep/fgrep with grep -E/-F
Browse files Browse the repository at this point in the history
Signed-off-by: Lars Wendler <[email protected]>
  • Loading branch information
Lars Wendler committed May 29, 2021
1 parent f7a1706 commit b998b78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app-shells/bash/files/bashrc
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ if ${use_color} ; then
#BSD#@export CLICOLOR=1
#GNU#@alias ls='ls --color=auto'
alias grep='grep --colour=auto'
alias egrep='egrep --colour=auto'
alias fgrep='fgrep --colour=auto'
alias egrep='grep -E --colour=auto'
alias fgrep='grep -F --colour=auto'
else
# show root@ when we don't have colors
PS1+='\u@\h \w \$ '
Expand Down

0 comments on commit b998b78

Please sign in to comment.