Handy stuff
grep -B 2 -A 3 foo barShow 2 lines before and 3 lines after grepping for foo in bargrep --color=always foo bar | less -rshow foo in colors also when piping to lessgrep -E "(foo|bar)" *find files containing foo or bar (Note: file will be displayed twice)
git diff -wignore whitespace when comparing line