#!/bin/sh

test -z "$1" && printf "Usage:\n$0 [options] <your grep expression here>\n" && exit
find . -type f -print0 | xargs -0 grep --color --binary-files=without-match "$@" 2>&1
