14
FILES="$@"
for f in $FILES
do
	if [ -f ${f}.bak ]
	then
		echo "Skiping $f file..."
		continue
	fi
	/bin/cp $f $f.bak
done
-----------