#!/bin/sh
# Find [dir] pattern...
#
# This packages the most common use of find(1) into
# a command that saves a few keystrokes each time.

if [ $# -lt 1 ];then set '*'; fi
if [ -d "$1" ];then 
	d=$1
	shift
else	d=.
fi
for	p
do	find $d -name "$p" 2>/dev/null | xargs ls -plid 
#	| align r l r l l r l r l 
done 
