#!/bin/sh

if [ ! -f "$1" ] ; then
    echoerr "\"$1\" doesn't exists or it's not a regular file."
    exit 1
else
    echo "\"$1\" is a regular file."
fi

