#!/bin/sh

REALSIZE=`cat "$1/$2" | wc -c`
COMPOSIZE=`cat "$1/$2" | perl -pe 's/\s//g' | wc -c`

echo $REALSIZE \| $COMPOSIZE \| "$2"
