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

F=/usr/bin/find

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