I am using grep to filter out directories I am not interested in like this:
svn stat | grep -v data/charts | grep -v lib/model | grep -v web/pics
It seems a bit "hacky". Is there a better way to specify more than one string to ignore, so that I dont have to chain multiple grep commands?