#!/bin/sh
#
# Print the size of a file, in bytes.
#
SIZE=`ls -l -d -G $1 | gawk '{print $4}'`
echo -n $SIZE
