#!/bin/sh 



function copy
{
  local i;
  for i in *.xml *.html; do
     cp ${i} ${i}.txt
  done
}

copy;

