#!/bin/bash
file="/mntCluster002/www/djtow/v3/wp-load.php"
i=0

until [ $i -gt 1 ]
do
	if [ -s $file ]
	then
		echo "Ok";
		sleep 2;
	else
		cp /mntCluster002/www/djtow/v3/tmp/wp-load.php /mntCluster002/www/djtow/v3/wp-load.php -f;
		ls /mntCluster002/www/djtow/v3/wp-load.php -sh;
		sleep 2;
	fi
done
