#!/bin/sh
# Find [dir] inum...
#
# 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	i
do	find $d -inum "$i" | xargs ls -lid | align r l r l l r l r l 
done 
