Statistics
| Revision:

svn-gvsig-desktop / branches / CqCMSDvp / binaries / linux / raster / install.sh @ 2007

History | View | Annotate | Download (168 Bytes)

1
#!/bin/sh
2

    
3
for i in `ls`; do
4
 if (test -d $i); then
5
  if [ "$i" = "CVS" ] ; then 
6
    echo "Ignorando CVS" 
7
  else  
8
    cd $i
9
    ./install.sh
10
    cd ..
11
  fi
12
 fi
13
done