set -v
set -x
for f in $#          # For each command line arg
do
   cp $f $f.back     # Make a backup copy
done
