[go: up one dir, main page]

Menu

[r298]: / bin / grepr  Maximize  Restore  History

Download this file

22 lines (18 with data), 487 Bytes

#!/bin/sh
## shfunction for ctafconf in /home/ctaf/.ctafconf
##
## Made by GESTES Cedric
## Login   <ctaf42@gmail.com>
##
## Started on  Sun Oct  2 07:23:17 2005 GESTES Cedric
## Last update Fri Nov 23 06:41:40 2007 GESTES Cedric
##
##CTAFCONF


#recursive grep with filename and line number
#exclude svn
grepr ()
{
  arg=$@
  grep --color=always -r -n -H $arg . | grep -v "/.svn/" | grep -v ".svn-base:" | grep -v "^grep:" | ~/.config/ctafconf/bin/colorgrepr.pl 2>/dev/null
}

grepr $@