keep a copy of my current dissertation example to investiaget further and another...
[IRC.git] / Robust / src / Benchmarks / Recovery / killclient.sh
1 # !/bin/sh
2 # killClients <fileName> <# of machines>
3 i=1;
4 fileName=$1
5 k=8;
6 while [ $i -le 8 ]; do
7   echo "killing dc-$i ${fileName}"
8   ssh dc-${i} pkill -u jihoonl -f ${fileName}
9   i=`expr $i + 1`
10 done