View Single Post
Old 2008-11-10, 08:52 PM   #4
xxxman
Aw, Dad, you've done a lot of great things, but you're a very old man, and old people are useless
 
Join Date: Nov 2008
Posts: 22
if you are on linux server, use this shell script

Code:
#! /bin/sh
for dir in /home/fiolder/* ; do
if test -d $dir ; then
cp -f /pathto/index.html $dir
fi
done
xxxman is offline   Reply With Quote