#!/bin/bash
find . -path ./.git -prune -o -path ./node_modules -prune -o -path ./lib-cov -prune -o -type f -print | grep -v "\.swp$" | xargs grep --color "$1"
