#!/bin/bash
# grrep - greps files recursively, excluding hidden files / dirs
if [ "$#" -lt 2 ]; then
	. usage "[options] dir grep-expression"
fi
dir="$1" ; shift
export LC_ALL=C
find_notdot "$dir" -type f | sort | xa grep "$@"
