2

私が見逃しているもの、またはすべてのケースである可能性があるものがあります。そのため、 NCDC データセットから NCDC データをダウンロードしようとしていますが、UNIX ボックスでは実行できません。

これまで使ってきたコマンドは

wget ftp://ftp.ncdc.noaa.gov:21/pub/data/noaa/1901/029070-99999-1901.gz">029070-99999-1901.gz

これは 1 ファイル分ですが、親ディレクトリ全体をダウンロードできれば非常に嬉しいです。

4

2 に答える 2

2

>の直前に寂しい"がいるようだ

すべてをダウンロードするには、このコマンドを試して、ディレクトリの内容全体を取得します

wget -r ftp://ftp.ncdc.noaa.gov:21/pub/data/noaa/1901/*
于 2013-07-26T15:19:25.460 に答える
0
for i in {1990..1993} 
do
    echo "$i"
    cd /home/chile/data
    # -nH Disable generation of host-prefixed directories
    # -nd all files will get saved to the current directory
    # -np Do not ever ascend to the parent directory when retrieving recursively. 
    # -R index.html*,227070*.gz* don't download files with this regex

wget -r -nH -nd -np -R *.html,999999-99999-$i.gz* http://www1.ncdc.noaa.gov/pub/data/noaa/$i/
    /data/noaa/$i/

done
于 2016-06-08T05:57:40.233 に答える