mirror of
https://github.com/openstreetmap/mod_tile.git
synced 2025-07-29 11:44:17 +00:00
7 lines
99 B
Bash
Executable File
7 lines
99 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for z in `seq 0 18`
|
|
do
|
|
(cd $z; ../../render_old -z $z -Z $z &> render.txt) &
|
|
done
|