Coloque isso em seu .bashrc ou .bash_profile para uma nova cor grep cada vez que for executado.
export GREP_OPTIONS='--color=auto'
grep_path=$(which grep)
function grep() {
# change the colour for next time
export GREP_COLOR="1;$(( $RANDOM % 6 + 31 ))"
# and run the usual grep with the args provided
$grep_path "$@"
}
Fácil 🙂