我缺少某些东西,或者可能是全部情况。所以我正在尝试从NCDC Datasets下载 NCDC 数据,但无法在 unix 框中执行此操作。
我到目前为止使用的命令是
wget ftp://ftp.ncdc.noaa.gov:21/pub/data/noaa/1901/029070-99999-1901.gz">029070-99999-1901.gz
这是一个文件,但如果我能下载整个父目录,我会很高兴。
我缺少某些东西,或者可能是全部情况。所以我正在尝试从NCDC Datasets下载 NCDC 数据,但无法在 unix 框中执行此操作。
我到目前为止使用的命令是
wget ftp://ftp.ncdc.noaa.gov:21/pub/data/noaa/1901/029070-99999-1901.gz">029070-99999-1901.gz
这是一个文件,但如果我能下载整个父目录,我会很高兴。
你似乎有一个孤独的“就在前面>
要下载所有内容,您可以尝试使用此命令获取整个目录内容
wget -r ftp://ftp.ncdc.noaa.gov:21/pub/data/noaa/1901/*
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