#!/bin/sh
# copy.sh

for dir in $(ls)
do
	if [ -d $dir ];then
		cp replace.sh $dir
	fi
done

