#!/bin/sh
#
# Print the size of a file, in bytes.
#
SIZE=`ls -l -d -G $1 | cut -b23-32`
echo -n $SIZE
