#!/bin/sh
for file in $* ;
do
    if ( test -f $file ) then
    echo '*******************************************'
    echo "                  $file"
    echo '*******************************************'
    cat $file
    echo "\n\n\n\n\n\n\n\n\n"
    fi
done