Project

General

Profile

1
#!/bin/sh
2
# Downloads XAL data using DiGIR
3
# Usage: env [start=...] [n=...] self >out.xml 2>>log
4

    
5
selfDir="$(dirname -- "$0")"
6

    
7
export \
8
url=http://remib.ecologia.edu.mx/digir/DiGIR.php \
9
resource=IE-XAL-HERBARIO \
10
chunk_size=200
11
    # the server often drops the connection if too much data is requested
12

    
13
"$selfDir/../../../bin/digir_client"
(2-2/7)