#!/bin/sh
for v in $@ ; do if [ -f $v ] ; then exit 0 ;fi ; done
exit 1

