Tagged Questions
1
vote
1answer
278 views
Shell script commands
I have this shell script:
#!/bin/sh
r.mapcalc water = 120
d.rast water
i=1
while [ $i != 100 ]
do
n=1
while [ $n != 10 ]
do
r.mapcalc < water.mapcalc
d.rast ...
