Project

General

Profile

Download (214 Bytes) Statistics
| Branch: | Revision:
1
#!/bin/sh
2
# Script extracts .tif-format image files from SRTM .zip archives
3
# Author: Rick Reeves, NCEAS
4
#
5
iNames=`ls ./srtm_0[2-9]*.zip`
6

    
7
for iName in $iNames
8
do
9
  echo " unpacking: $iName"
10
  unzip -o $iName
11
done
(10-10/10)