repo.or.cz
/
ACE_TAO.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Changes to attempt to silence bcc64x
[ACE_TAO.git]
/
TAO
/
orbsvcs
/
performance-tests
/
RTEvent
/
Colocated_Roundtrip
/
generate_acc.sh
blob
52fd2b14d3b0bbc1986966e0041acb5d95abf385
1
#!/bin/sh
2
3
. parameters
4
5
for
t
in
$TYPES
;
do
6
for
i
in
$t
.
*
.dat
;
do
7
b
=
`basename
$i
.dat`
8
awk
'BEGIN {
9
s = 0;
10
}
11
{
12
s +=
$2
;
13
print
$1
, s
14
}'
$i
>
$b
.acc.dat
;
15
echo
$i
16
done
17
done