#!/bin/bash
#
# James Devine
# CS 441 Final Project
#
# runn_comm.sh - A bash script to run a given command on each node 
#                  in the cluster
#
# Usage ./run_comm "command_to_be_run"

#Remove the local hadoop file from each node
for i in 125 126 127 134 137 138 139 141 147 148 149 23 3 61 136 135
do
	ssh aldenv$i $1
done


