This commit is contained in:
Jeff Carr 2011-10-31 14:16:44 -04:00
parent d3074d9532
commit 3de4074117
1 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ hosts="try1 try2 try3 try4 try5"
for host in ${hosts}; do for host in ${hosts}; do
START=`date +%s` START=`date +%s`
echo STARTDOKERN {host} $START echo STARTDOKERN ${host} $START
date -u date -u
sync sync
@ -30,7 +30,7 @@ for host in ${hosts}; do
sync sync
END=`date +%s` END=`date +%s`
ELAPSE=$(( $END - $START )) ELAPSE=$(( $END - $START ))
echo ENDDOKERN {host} $END echo ENDDOKERN ${host} $END
echo ELAPSEDOKERN $ELAPSE echo ELAPSEDOKERN $ELAPSE
date -u date -u
done done