From: James Bunton Date: Fri, 6 Mar 2009 12:13:58 +0000 (+1100) Subject: Bash: Ignore svn files by default when using grep X-Git-Url: https://code.delx.au/dotfiles/commitdiff_plain/97fda15983d7ad7be599a18a69f205f46d9f5a24 Bash: Ignore svn files by default when using grep --- diff --git a/.bash/interactive b/.bash/interactive index 6745a18..61392eb 100644 --- a/.bash/interactive +++ b/.bash/interactive @@ -46,7 +46,7 @@ alias f='find . -iname' alias webshare='python -c "import SimpleHTTPServer; SimpleHTTPServer.test()"' alias rm='rm -i' alias less='less -R' -alias grep='grep --color=auto' +alias grep='grep --color=auto --exclude "*.svn-base"' # Bash should check the terminal size after every command terminates shopt -s checkwinsize