How to call Oracle package through shell script?

Hey i have a package in oracle to validate file mask. can i call it in through
shell script . if yes , how

Thanks

Yes you can..

 
sqlplus -s username/password@db_name <<EOF
EXEC procedure_name
exit;
EOF