| Nathan Stine ( @ 2008-06-08 18:00:00 |
Read the resulting files
#!/bin/bash
BEGIN=11
END=41
for((BEGIN; BEGIN <= END; BEGIN++))
do
wget -r -l2 -nc -nv --no-parent -A.tif http://memory.loc.gov/ll/llac/0$BEGIN/
done
Note that I downloaded 1-10 manually.
#!/bin/bash
BEGIN=11
END=41
for((BEGIN; BEGIN <= END; BEGIN++))
do
wget -r -l2 -nc -nv --no-parent -A.tif http://memory.loc.gov/ll/llac/0$BEGIN/
done
Note that I downloaded 1-10 manually.