Colorful grep output

To make grep outputs colorful, just --color parameter:

grep --color=auto

You can make an alias for this if you want this behaviour default:

alias grep='grep --color=auto'

or putting following line in your .bashrc file:

GREP_OPTIONS='--color=auto'