git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@867 331e1502-861f-0410-8da2-ba01fb791d7f
18 lines
261 B
Bash
Executable file
18 lines
261 B
Bash
Executable file
#!/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
|