#!/bin/sh

if [ -n "$1" ]
then
	grep -r "$@" src/*|grep -v '\.svn'
fi
