#!/bin/sh
#
# This scripts creates the directories for the .ppm
# files that will be written across the cluster by
# NPB
#

if test $# -eq 1
then
	for x in `cat /<path_to_dir>/vwall | grep -v \#`; do
		echo "Creating DIR /scrtch/<username>/$1 on boba $x ..."
		ssh boba$x "mkdir /scrtch/<username>/$1; exit"
		sleep 1
	done
fi
