#!/bin/sh
# Print the size of a file, in bytes.
# Maybe this script have been taken from Debian
# Modified to work under Bad Penguin by AGX
# 1999-11-29, by AGX
: changed to 24 due to problem with postgres owned files
SIZE=`ls -l -d -G $1 | cut -b24-32`
echo -n $SIZE
