Skip to content
Snippets Groups Projects
Commit e5a85c34 authored by Jonathon Duerig's avatar Jonathon Duerig
Browse files

Quick script for Kevin. Runs gather-dest.pl on every node (later will run Pramod's UDP stuff).

parent ee861233
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/perl
if ($ARGV != 4)
{
die("Usage: get-all-bw.pl <pid> <eid> <node-count> <duration>");
}
$pid = $ARGV[0];
$eid = $ARGV[1];
$nodeCount = $ARGV[2];
$duration = $ARGV[3];
for ($i = 1; $i <= $nodeCount; ++$i)
{
system("perl gather-dest.pl $pid $eid $nodeCount $i $duration");
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment