#!/bin/sh
#
# Print the size of a file, in bytes.
#
echo -n "`ls -l $1 | tr -s ' ' | cut -f 5 -d ' '`"
