#!/bin/bash -x date -u cd /root/benchmarks/kernel/ hosts="try1 try2 try3 try4 try5" for host in ${hosts}; do echo start {host} date -u sync ./build.pl date -u sync date -u ./build.pl --mrproper date -u sync date -u ./build.pl --bigconfig date -u sync date -u ./build.pl --clean date -u sync echo end {host} date -u done