Changes between Initial Version and Version 1 of Ticket #3699, comment 5


Ignore:
Timestamp:
Jan 26, 2017, 12:09:38 AM (7 years ago)
Author:
EvanCarroll

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #3699, comment 5

    initial v1  
    55You'll see this for PLACE -- wget, cd sequence.
    66
    7 > wget http://www2.census.gov/geo/tiger/TIGER2016/PLACE/tl_2016_48_place.zip --mirror --reject=html
    8 > cd /gisdata/www2.census.gov/geo/tiger/TIGER2016/PLACE
     7
     8{{{
     9wget http://www2.census.gov/geo/tiger/TIGER2016/PLACE/tl_2016_48_place.zip --mirror --reject=html
     10cd /gisdata/www2.census.gov/geo/tiger/TIGER2016/PLACE
     11# stuff
     12for z in tl_2016_48*_place.zip ; do $UNZIPTOOL -o -d $TMPDIR $z; done
     13}}}
    914
    1015But, not for everything.. Sometimes it just does this..
    1116
     17{{{
     18# No WGET
    1219cd /gisdata/www2.census.gov/geo/tiger/TIGER2016/EDGES/
     20for z in tl_*_48*_edges*.zip ; do $UNZIPTOOL -o -d $TMPDIR $z; done
     21}}}
    1322
    1423But, there is nothing there..