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_histo.sh
blob
68a239db84a74b06aa3efec76f50ae4a1676fa7e
1
#/bin/sh
2
3
. parameters
4
5
for
i
in
*
.txt
;
do
6
b
=
`basename
$i
.txt`
7
echo
$i
8
awk
'/^HISTO/ {print
$3
}'
$i
|
sort
-n
|
uniq
-c
|
9
awk
-v
N
=
$ITERATIONS
'{print
$2
,
$1
/ N}'
>
$b
.histo.dat
10
done