#!/bin/sh
#
# a simple script to list:
#                          file name
#                          size
#   for all the files in the specified directory
#   or current directory if none specified
#
echo  "  Size          Name"
echo -n "============================"
/bin/ls -Al ${1:-$PWD} | /usr/bin/tr -s ' ' | /usr/bin/cut -d' ' -f9,5 | /usr/bin/tr ' ' '\t'
echo
