Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • clavrx2grid_only
  • viirs_interp
3 results

cfsr_ken.sh

Blame
  • Forked from Michael Hiley / ssec
    46 commits behind the upstream repository.
    cfsr_ken.sh 343 B
    #!/bin/bash
    
    ftp_root='/pub/patmosx/for_ken/cfsr'
    local_root='/fjord/jgs/patmosx/Ancil_Data/clavrx_ancil_data_new/dynamic/cfsr'
    
    years=`seq 1994 1998`
    
    # "-m" will attempt to make the remote dir if necessary.
    for year in $years; do
        ncftpput -m -p 'hiley@wisc.edu' ftp.ssec.wisc.edu ${ftp_root}/${year} ${local_root}/${year}/cfsr*.hdf
    done