#! /bin/bash
# @(#) Change mode sample

for f in $*
do
	chmod u+x $f
	echo "File changed `ls -ld $f`"
done