moved utilities and contribution in branchez

git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@2183 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
liefooga 2011-03-11 13:58:48 +00:00
commit 8280cf082b
1346 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,18 @@
#!/bin/bash
lines=0
for i in `ls $1`
do
mem=$PWD
if [ ! -d $i ]
then
tmp=`wc -l $i | cut -f1 -d\ `
echo $tmp >> /tmp/count.txt
else
cd $i
/home/tlegrand/OPAC/software/paradisEO/repository/paradiseo/trunk/count_lines.sh $PWD
cd $mem
fi
done