#!/bin/sh

if [ $# -eq 0 ]; then
    echo "usage: $0 FILE ..." > /dev/stderr
    exit 1
fi

while [ $# -gt 0 ]
do
    if test -f $1
    then
        /bin/ls -lh $1 | tr -s ' ' | cut -d' ' -f5,9-
    else
        echo "??? $1"
    fi
    shift
done | column -t
exit 0
