Changes to attempt to silence bcc64x
[ACE_TAO.git] / TAO / orbsvcs / performance-tests / RTEvent / Colocated_Roundtrip / generate_histo.sh
blob68a239db84a74b06aa3efec76f50ae4a1676fa7e
1 #/bin/sh
3 . parameters
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