Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
emulab
emulab-devel
Commits
e5a85c34
Commit
e5a85c34
authored
Sep 17, 2007
by
Jonathon Duerig
Browse files
Quick script for Kevin. Runs gather-dest.pl on every node (later will run Pramod's UDP stuff).
parent
ee861233
Changes
1
Hide whitespace changes
Inline
Side-by-side
pelab/bw-bottleneck/get-all-bw.pl
0 → 100644
View file @
e5a85c34
#!/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
");
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment