#!/bin/sh


N="1";


for f in `cat ~/.hosts`; do
    echo "terminating on $f";
    ssh $f   ~/Siegel_Numerics/terminate ~/Siegel_Numerics/Logs/renorm.ds$f.math.toronto.edu."$N";
done

N="2";

for f in `cat ~/.hosts`; do
    echo "terminating on $f";
    ssh $f   ~/Siegel_Numerics/terminate ~/Siegel_Numerics/Logs/renorm.ds$f.math.toronto.edu."$N";
done
