#!/bin/sh
for i in $*
do
   echo "File $i: `wc -c $i | cut -f1 -d" "` bytes"
done
