grepで特定のキーワードを除外する。

すごく便利だー。

【testを検索】
# grep -r test

【testを除外】
# grep -v test

【testを検索して、その中からhogeを除外】
# grep -r test | grep -v hoge