<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>

<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
</head>
<body text="#000000" bgcolor="#ffffff">
Hello,
<br>
<br>
I run the whole process for retrieving a fresh report of callcatchers.
<br>
I hope having using callcatcher in the right way and that it will help
<br>
<br>
Here is the process I used in &lt;source&gt;/libo/clone :
<br>
find . -mindepth 2 -maxdepth 2 -type d | grep -v git &gt;
directories.txt
<br>
<br>
for i in&nbsp; `cat directories.txt`;do cd $i;j=`basename ${i}`;callanalyse
unxlngi6.pro/lib/*.so unxlngi6.pro/bin/* &gt;
${j}_callanalyse_report.txt;cd ../../;done
<br>
<br>
find . -name <b class="moz-txt-star"><span class="moz-txt-tag">*</span>callanalyse_report<span
 class="moz-txt-tag">*</span></b> -size +1 &gt; reports.txt
<br>
<br>
for i in `cat reports.txt`;do j=`basename $i|cut -f1 -d_`;echo -e
"MODULE $j\n" &gt;&gt; full_reports.txt;cat $i &gt;&gt;
full_reports.txt;echo -e "\n\n" &gt;&gt; full_reports.txt;done
<br>
<br>
There should be something simpler to do but i just wanted something
that worked <span class="moz-smiley-s1" title=":-)"><span>:-)</span></span>
<br>
<br>
Julien.
<br>
</body>
</html>