#!/bin/sh
# Feed a bunch of patterns to "find . -name" to find the matching files

for	p
do	# echo Pat: $p
	find . -name "$p" -exec ls -Flid {} ';' | align r l r l l r l r r
done
