#! /bin/sh
for i in `cat dir_list`
do
   rm -f $i/$i
done
find . -name "*.php" -exec rm -f {} \; -print

