#!/bin/sh

#/bin/ls -lhd $*|cut -c35-42,60-

while [ "$#" -ge 1 ]
do
	/public/bin/ls -lhd "$1"|cut -c35-42,56-

	shift
done
