#!/bin/sh
#
# This script will set execute permission for all the 
#    files passed as command line arguments
#
if [[ ${#} -eq 0 ]]
then
   echo "You must provide a file(s) "
   exit 1
fi

/bin/chmod u+x ${*}
exit 0

